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.
29 lines
566 B
Go
29 lines
566 B
Go
package vars
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/eval/errs"
|
|
"src.elv.sh/pkg/tt"
|
|
)
|
|
|
|
func TestNewReadOnly(t *testing.T) {
|
|
v := NewReadOnly("haha")
|
|
if v.Get() != "haha" {
|
|
t.Errorf("Get doesn't return initial value")
|
|
}
|
|
|
|
err := v.Set("lala")
|
|
if _, ok := err.(errs.SetReadOnlyVar); !ok {
|
|
t.Errorf("Set a readonly var doesn't error as expected: %#v", err)
|
|
}
|
|
}
|
|
|
|
func TestIsReadOnly(t *testing.T) {
|
|
tt.Test(t, IsReadOnly,
|
|
Args(NewReadOnly("foo")).Rets(true),
|
|
Args(FromGet(func() any { return "foo" })).Rets(true),
|
|
Args(FromInit("foo")).Rets(false),
|
|
)
|
|
}
|