just 1.56.0

🤖 Just a command runner
Documentation
use super::*;

#[test]
fn dependencies_in_submodules_run_with_submodule_scope() {
  Test::new()
    .write(
      "bar.just",
      "
        x := 'X'
        bar a=x:
         echo {{ a }} {{ x }}
      ",
    )
    .justfile(
      "
        mod bar

        foo: bar::bar
      ",
    )
    .stdout("X X\n")
    .stderr("echo X X\n")
    .success();
}

#[test]
fn aliases_in_submodules_run_with_submodule_scope() {
  Test::new()
    .write(
      "bar.just",
      "
        x := 'X'
        bar a=x:
         echo {{ a }} {{ x }}
      ",
    )
    .justfile(
      "
        mod bar

        alias foo := bar::bar
      ",
    )
    .arg("foo")
    .stdout("X X\n")
    .stderr("echo X X\n")
    .success();
}

#[test]
fn dependencies_in_nested_submodules_run_with_submodule_scope() {
  Test::new()
    .write(
      "b.just",
      "
        x := 'y'

        foo:
            @echo {{ x }}
      ",
    )
    .write("a.just", "mod b")
    .stdout("y\n")
    .justfile("mod a")
    .args(["a", "b", "foo"])
    .success();
}

#[test]
fn imported_recipes_run_in_correct_scope() {
  Test::new()
    .justfile(
      "
        mod a
        mod b
      ",
    )
    .write(
      "a.just",
      "
        X := 'A'
        import 'shared.just'
      ",
    )
    .write(
      "b.just",
      "
        X := 'B'
        import 'shared.just'
      ",
    )
    .write(
      "shared.just",
      "
        foo:
         @echo {{ X }}
      ",
    )
    .args(["a::foo", "b::foo"])
    .stdout("A\nB\n")
    .success();
}

#[test]
fn assignment_are_not_reevaluated_through_user_defined_functions() {
  Test::new()
    .justfile(
      "
        set unstable

        c := `echo x >> cnt; wc -l < cnt | tr -d ' '`
        f(y) := y + c
        a := f('')
        b := c

        foo:
          @echo {{ a }} {{ b }} {{ c }}
      ",
    )
    .arg("foo")
    .stdout("1 1 1\n")
    .expect_file("cnt", "x\n")
    .success();
}