mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6be0f70983
gty-migrate-from-testify --ignore-build-tags Signed-off-by: Daniel Nephin <dnephin@docker.com>
30 lines
820 B
Go
30 lines
820 B
Go
package opts // import "github.com/docker/docker/opts"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gotestyourself/gotestyourself/assert"
|
|
is "github.com/gotestyourself/gotestyourself/assert/cmp"
|
|
)
|
|
|
|
func TestQuotedStringSetWithQuotes(t *testing.T) {
|
|
value := ""
|
|
qs := NewQuotedString(&value)
|
|
assert.Check(t, qs.Set(`"something"`))
|
|
assert.Check(t, is.Equal("something", qs.String()))
|
|
assert.Check(t, is.Equal("something", value))
|
|
}
|
|
|
|
func TestQuotedStringSetWithMismatchedQuotes(t *testing.T) {
|
|
value := ""
|
|
qs := NewQuotedString(&value)
|
|
assert.Check(t, qs.Set(`"something'`))
|
|
assert.Check(t, is.Equal(`"something'`, qs.String()))
|
|
}
|
|
|
|
func TestQuotedStringSetWithNoQuotes(t *testing.T) {
|
|
value := ""
|
|
qs := NewQuotedString(&value)
|
|
assert.Check(t, qs.Set("something"))
|
|
assert.Check(t, is.Equal("something", qs.String()))
|
|
}
|