just 1.50.0

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

#[test]
fn export_recipe() {
  Test::new()
    .justfile(
      "
        export foo='bar':
          echo {{foo}}
      ",
    )
    .stdout("bar\n")
    .stderr("echo bar\n")
    .success();
}

#[test]
fn alias_recipe() {
  Test::new()
    .justfile(
      "
        alias foo='bar':
          echo {{foo}}
      ",
    )
    .stdout("bar\n")
    .stderr("echo bar\n")
    .success();
}