mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
6e36058d0a
- Use reflection to derive function name. - Take test cases as variadic arguments, instead of requiring them to be wrapped in a Table. - Support naming test cases. - Run test cases as subtests with t.Run.
15 lines
157 B
Go
15 lines
157 B
Go
package vals
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/tt"
|
|
)
|
|
|
|
func TestLen(t *testing.T) {
|
|
tt.Test(t, Len,
|
|
Args("foobar").Rets(6),
|
|
Args(10).Rets(-1),
|
|
)
|
|
}
|