Test that overrides are not evaluated (#92)
This commit is contained in:
parent
3d8d901968
commit
edbd94d654
@ -569,7 +569,23 @@ recipe arg:
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// shebangs are printed
|
#[test]
|
||||||
|
fn overrides_not_evaluated() {
|
||||||
|
integration_test(
|
||||||
|
&["foo=bar", "a=b", "recipe", "baz=bar"],
|
||||||
|
r#"
|
||||||
|
foo = `exit 1`
|
||||||
|
a = "a"
|
||||||
|
baz = "baz"
|
||||||
|
|
||||||
|
recipe arg:
|
||||||
|
echo arg={{arg}}
|
||||||
|
echo {{foo + a + baz}}"#,
|
||||||
|
0,
|
||||||
|
"arg=baz=bar\nbarbbaz\n",
|
||||||
|
"echo arg=baz=bar\necho barbbaz\n",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn dry_run() {
|
fn dry_run() {
|
||||||
|
Loading…
Reference in New Issue
Block a user