1
0
Fork 0

More dedupe unit tests

master
Philip O'Toole 2 years ago
parent ddb43b82e5
commit 0de3a1cc24

@ -30,6 +30,10 @@ func Test_Dedupe(t *testing.T) {
orig: []string{"foo", "foo", "foo"},
exp: []string{"foo"},
},
{
orig: []string{"foo", "foo", "foo", "bar", "bar", "bar"},
exp: []string{"foo", "bar"},
},
{
orig: []string{"foo", "bar", "foo", "foo"},
exp: []string{"foo", "bar", "foo"},

Loading…
Cancel
Save