mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3845728524
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
30 lines
764 B
Go
30 lines
764 B
Go
package opts // import "github.com/docker/docker/opts"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
is "gotest.tools/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()))
|
|
}
|