github.com/kolbycrouch/elvish@v0.14.1-0.20210614162631-215b9ac1c423/pkg/eval/vals/len_test.go (about) 1 package vals 2 3 import ( 4 "testing" 5 6 . "src.elv.sh/pkg/tt" 7 ) 8 9 func TestLen(t *testing.T) { 10 Test(t, Fn("Len", Len), Table{ 11 Args("foobar").Rets(6), 12 Args(10).Rets(-1), 13 }) 14 }