mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
38 lines
896 B
Go
38 lines
896 B
Go
package vals
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/tt"
|
|
)
|
|
|
|
// An implementation of Iterator.
|
|
type iterator struct{ elements []interface{} }
|
|
|
|
func (i iterator) Iterate(f func(interface{}) bool) {
|
|
Feed(f, i.elements...)
|
|
}
|
|
|
|
// A non-implementation of Iterator.
|
|
type nonIterator struct{}
|
|
|
|
func TestCanIterate(t *testing.T) {
|
|
Test(t, Fn("CanIterate", CanIterate), Table{
|
|
Args("foo").Rets(true),
|
|
Args(MakeList("foo", "bar")).Rets(true),
|
|
Args(iterator{vs("a", "b")}).Rets(true),
|
|
Args(nonIterator{}).Rets(false),
|
|
})
|
|
}
|
|
|
|
func TestCollect(t *testing.T) {
|
|
Test(t, Fn("Collect", Collect), Table{
|
|
Args("foo").Rets(vs("f", "o", "o"), nil),
|
|
Args(MakeList("foo", "bar")).Rets(vs("foo", "bar"), nil),
|
|
Args(iterator{vs("a", "b")}).Rets(vs("a", "b"), nil),
|
|
Args(nonIterator{}).Rets(vs(), cannotIterate{"!!vals.nonIterator"}),
|
|
})
|
|
}
|
|
|
|
// Iterate is tested indirectly by the test against Collect.
|