1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
use super::*;
#[test]
fn parameter_may_shadow_variable() {
Test::new()
.arg("a")
.arg("bar")
.justfile("FOO := 'hello'\na FOO:\n echo {{FOO}}\n")
.stdout("bar\n")
.stderr("echo bar\n")
.run();
}
#[test]
fn shadowing_parameters_do_not_change_environment() {
Test::new()
.arg("a")
.arg("bar")
.justfile("export FOO := 'hello'\na FOO:\n echo $FOO\n")
.stdout("hello\n")
.stderr("echo $FOO\n")
.run();
}
#[test]
fn exporting_shadowing_parameters_does_change_environment() {
Test::new()
.arg("a")
.arg("bar")
.justfile("export FOO := 'hello'\na $FOO:\n echo $FOO\n")
.stdout("bar\n")
.stderr("echo $FOO\n")
.run();
}
|