mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
c1dce661b7
Some of the variables are added after the Evaler is created, but that change was not synchronized back to the copy of the builtin module that is imported with "use builtin". This fixes #1414.
18 lines
380 B
Go
18 lines
380 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) {
|
|
TestWithSetup(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"),
|
|
)
|
|
}
|