diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-05 06:43:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-05 06:43:20 -0500 |
commit | b06190e0da66f45cbe6a44d79065fabcd00ea19c (patch) | |
tree | e50aa13cd31b63d797cabe4b9157599bf2f36898 /libpod/util_test.go | |
parent | 098389dc3e7bbba7c266ad24c909f3a5422e2908 (diff) | |
parent | 0026075d59b5e6e90786ed21825ac43d4f59fa5a (diff) | |
download | podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.gz podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.bz2 podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.zip |
Merge pull request #8 from baude/clicontext
Clicontext
Diffstat (limited to 'libpod/util_test.go')
-rw-r--r-- | libpod/util_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libpod/util_test.go b/libpod/util_test.go new file mode 100644 index 000000000..24e5fdfac --- /dev/null +++ b/libpod/util_test.go @@ -0,0 +1,19 @@ +package libpod + +import ( + "github.com/stretchr/testify/assert" + "testing" +) + +var ( + sliceData = []string{"one", "two", "three", "four"} +) + +func TestStringInSlice(t *testing.T) { + // string is in the slice + assert.True(t, StringInSlice("one", sliceData)) + // string is not in the slice + assert.False(t, StringInSlice("five", sliceData)) + // string is not in empty slice + assert.False(t, StringInSlice("one", []string{})) +} |