mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
a1b30deb86
The old TestWithSetup is now more accurately called TestWithEvalerSetup.
18 lines
386 B
Go
18 lines
386 B
Go
package eval_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/eval"
|
|
. "src.elv.sh/pkg/eval/evaltest"
|
|
"src.elv.sh/pkg/eval/vals"
|
|
)
|
|
|
|
func TestExplicitBuiltinModule(t *testing.T) {
|
|
TestWithEvalerSetup(t, func(ev *Evaler) { ev.Args = vals.MakeList("a", "b") },
|
|
That("all $args").Puts("a", "b"),
|
|
// Regression test for #1414
|
|
That("use builtin; all $builtin:args").Puts("a", "b"),
|
|
)
|
|
}
|