Skip to content

Commit

Permalink
codecov nag
Browse files Browse the repository at this point in the history
  • Loading branch information
muir committed Nov 11, 2021
1 parent cb17640 commit bf7b427
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions unpack_test.go
Expand Up @@ -54,9 +54,12 @@ func TestStringSetter(t *testing.T) {
Foo Foo `value:"foo" want:"~foo~"`
FooArray [2]Foo `value:"a,b,c" want:"[~a~ ~b,c~]"`
FooP *Foo `value:"foo" want:"~foo~"`
SA1 []string `value:"foo/bar" want:"[foo/bar]"`
SA2 []string `value:"foo/bar" want:"[foo bar]" split:"/"`
SA3 []string `value:"foo,bar" want:"[foo,bar]" split:""`
SS1 []string `value:"foo/bar" want:"[foo/bar]"`
SS2 []string `value:"foo/bar" want:"[foo bar]" split:"/"`
SS3 []string `value:"foo,bar" want:"[foo,bar]" split:""`
SA1 [2]string `value:"foo/bar" want:"[foo/bar ]"`
SA2 [2]string `value:"foo/bar" want:"[foo bar]" split:"/"`
SA3 [2]string `value:"foo,bar" want:"[foo,bar ]" split:""`
}
var ts tsType
vp := reflect.ValueOf(&ts)
Expand Down

0 comments on commit bf7b427

Please sign in to comment.