File: shadowing_parameters.rs

package info (click to toggle)
rust-just 1.43.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 2,068 kB
  • sloc: sh: 300; makefile: 6
file content (34 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (3)
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();
}