just/tests/parser.rs

14 lines
162 B
Rust
Raw Permalink Normal View History

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