Skip to content

Commit

Permalink
Add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Dec 10, 2024
1 parent f145c17 commit fe2d79b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,14 @@ fn dont_run_duplicate_recipes() {
)
.run();
}

#[test]
fn invalid_bang_operator() {
Test::new()
.justfile(
"
x := if '' !! '' { '' } else { '' }
",
)
.run();
}

0 comments on commit fe2d79b

Please sign in to comment.