1
0
mirror of https://github.com/casey/just synced 2024-07-05 17:28:49 +00:00
just/tests/parser.rs
2022-09-10 15:19:49 -07:00

14 lines
162 B
Rust

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