diff options
author | baude <bbaude@redhat.com> | 2017-11-02 08:09:17 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2017-11-03 20:37:27 -0500 |
commit | 99ca35f18598f77bcf260f91044116365d8e3c26 (patch) | |
tree | c6699563dee37e4cc90a303ca343d2ad919e9ba7 /libpod/util_test.go | |
parent | 46d762176eafb748b2094bd518ecf66d86388779 (diff) | |
download | podman-99ca35f18598f77bcf260f91044116365d8e3c26.tar.gz podman-99ca35f18598f77bcf260f91044116365d8e3c26.tar.bz2 podman-99ca35f18598f77bcf260f91044116365d8e3c26.zip |
util_test.go: Unittests for util.go
Add unit tests for func StringInSlice.
Signed-off-by: baude <bbaude@redhat.com>
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..b3d336d1f --- /dev/null +++ b/libpod/util_test.go @@ -0,0 +1,19 @@ +package libpod + + +import ( + "testing" + "github.com/stretchr/testify/assert" +) +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{})) +}
\ No newline at end of file |