underscore/contains_test.go
2021-12-29 13:46:29 -04:00

14 lines
225 B
Go

package underscore_test
import (
"testing"
"github.com/stretchr/testify/assert"
u "github.com/rjNemo/underscore"
)
func TestContains(t *testing.T) {
nums := []int{1, 3, 5, 7, 9}
assert.True(t, u.Contains(nums, 5))
}