20 lines
218 B
Rust
20 lines
218 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn dont_run_duplicate_recipes() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
foo:
|
|
# foo
|
|
",
|
|
)
|
|
.args(["foo", "foo"])
|
|
.stderr(
|
|
"
|
|
# foo
|
|
",
|
|
)
|
|
.run();
|
|
}
|