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