2022-06-19 07:56:31 +03:00
|
|
|
use super::*;
|
2022-05-04 08:04:55 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dont_run_duplicate_recipes() {
|
|
|
|
Test::new()
|
|
|
|
.justfile(
|
|
|
|
"
|
|
|
|
foo:
|
|
|
|
# foo
|
|
|
|
",
|
|
|
|
)
|
2023-01-04 09:31:56 +03:00
|
|
|
.args(["foo", "foo"])
|
2022-05-04 08:04:55 +03:00
|
|
|
.stderr(
|
|
|
|
"
|
|
|
|
# foo
|
|
|
|
",
|
|
|
|
)
|
|
|
|
.run();
|
|
|
|
}
|