List check utils.

This commit is contained in:
Andrey Smirnov
2013-12-16 16:18:32 +04:00
parent 0151af17c7
commit f58db85edf
2 changed files with 39 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package utils
import (
. "launchpad.net/gocheck"
)
type ListSuite struct {
}
func (s *ListSuite) TestStringsIsSubset(c *C) {
err := StringsIsSubset([]string{"a", "b"}, []string{"a", "b", "c"}, "[%s]")
c.Assert(err, IsNil)
err = StringsIsSubset([]string{"b", "a"}, []string{"b", "c"}, "[%s]")
c.Assert(err, ErrorMatches, "[a]")
}