mirror of
https://github.com/docker/cli.git
synced 2025-08-29 00:47:54 +03:00
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
737 B
Go
31 lines
737 B
Go
package opts
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestQuotedStringSetWithQuotes(t *testing.T) {
|
|
value := ""
|
|
qs := NewQuotedString(&value)
|
|
assert.NilError(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.NilError(t, qs.Set(`"something'`))
|
|
assert.Check(t, is.Equal(`"something'`, qs.String()))
|
|
}
|
|
|
|
func TestQuotedStringSetWithNoQuotes(t *testing.T) {
|
|
value := ""
|
|
qs := NewQuotedString(&value)
|
|
assert.NilError(t, qs.Set("something"))
|
|
assert.Check(t, is.Equal("something", qs.String()))
|
|
}
|