mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
71cd3835bc
Qualified imports of pkg/tt outnumber unqualified (27 to 24). Improve consistency, and clarity, by changing the dot (unqualified) imports of that package symbols to qualified.
15 lines
182 B
Go
15 lines
182 B
Go
package vals
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/tt"
|
|
)
|
|
|
|
func TestLen(t *testing.T) {
|
|
tt.Test(t, tt.Fn("Len", Len), tt.Table{
|
|
Args("foobar").Rets(6),
|
|
Args(10).Rets(-1),
|
|
})
|
|
}
|