just 1.53.0

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

#[test]
fn dont_run_duplicate_recipes() {
  Test::new()
    .justfile(
      "
        set dotenv-load # foo
        bar:
      ",
    )
    .success();
}

#[test]
fn comment_after_unexport() {
  Test::new()
    .justfile(
      "
        unexport foo # bar

        baz:
      ",
    )
    .success();
}

#[test]
fn attribute_without_item() {
  Test::new()
    .justfile(
      "
        [confirm]
      ",
    )
    .stderr(
      "
        error: expected '@', '[', comment, end of line, or identifier, but found end of file
         ——▶ justfile:1:11
          │
        1 │ [confirm]
          │          ^
      ",
    )
    .failure();
}