aboutsummaryrefslogtreecommitdiff
path: root/string_slice_test.go
diff options
context:
space:
mode:
authorMitch Connors <[email protected]>2019-09-17 09:43:30 -0700
committerGitHub <[email protected]>2019-09-17 09:43:30 -0700
commit7b22f689a41a1727c42eb02aaa1492d26402c592 (patch)
treeca8ae6c13649d5a76f09cd8c7a4ca5011c870c85 /string_slice_test.go
parent972238283c0625cf3e881de7699ba8f2524c340a (diff)
parent8e39cc44d9bd06ee2d9ef3109c93809072d5e551 (diff)
Merge pull request #216 from therealmitchconnors/elegant
Implement SliceValue for better list semantics
Diffstat (limited to 'string_slice_test.go')
-rw-r--r--string_slice_test.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/string_slice_test.go b/string_slice_test.go
index c41f3bd..9692461 100644
--- a/string_slice_test.go
+++ b/string_slice_test.go
@@ -251,3 +251,26 @@ func TestSSWithSquareBrackets(t *testing.T) {
}
}
}
+
+func TestSSAsSliceValue(t *testing.T) {
+ var ss []string
+ f := setUpSSFlagSet(&ss)
+
+ in := []string{"one", "two"}
+ argfmt := "--ss=%s"
+ arg1 := fmt.Sprintf(argfmt, in[0])
+ arg2 := fmt.Sprintf(argfmt, in[1])
+ err := f.Parse([]string{arg1, arg2})
+ if err != nil {
+ t.Fatal("expected no error; got", err)
+ }
+
+ f.VisitAll(func(f *Flag) {
+ if val, ok := f.Value.(SliceValue); ok {
+ _ = val.Replace([]string{"three"})
+ }
+ })
+ if len(ss) != 1 || ss[0] != "three" {
+ t.Fatalf("Expected ss to be overwritten with 'three', but got: %s", ss)
+ }
+}