mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
fc66ad1d10
This syntax was deprecated in 0.15.0 and no longer documented since then.
33 lines
823 B
Go
33 lines
823 B
Go
package vals
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/tt"
|
|
)
|
|
|
|
type hasKeyer struct{ key interface{} }
|
|
|
|
func (h hasKeyer) HasKey(k interface{}) bool { return k == h.key }
|
|
|
|
func TestHasKey(t *testing.T) {
|
|
Test(t, Fn("HasKey", HasKey), Table{
|
|
// Map
|
|
Args(MakeMap("k", "v"), "k").Rets(true),
|
|
Args(MakeMap("k", "v"), "bad").Rets(false),
|
|
// HasKeyer
|
|
Args(hasKeyer{"valid"}, "valid").Rets(true),
|
|
Args(hasKeyer{"valid"}, "invalid").Rets(false),
|
|
// Fallback to IterateKeys
|
|
Args(keysIterator{vs("lorem")}, "lorem").Rets(true),
|
|
Args(keysIterator{vs("lorem")}, "ipsum").Rets(false),
|
|
// Fallback to Len
|
|
Args(MakeList("lorem", "ipsum"), "0").Rets(true),
|
|
Args(MakeList("lorem", "ipsum"), "0..").Rets(true),
|
|
Args(MakeList("lorem", "ipsum"), "2").Rets(false),
|
|
|
|
// Non-container
|
|
Args(1, "0").Rets(false),
|
|
})
|
|
}
|