just/tests/private.rs

41 lines
491 B
Rust
Raw Permalink Normal View History

use super::*;
#[test]
fn private_attribute_for_recipe() {
Test::new()
.justfile(
"
[private]
foo:
",
)
2023-01-03 22:31:56 -08:00
.args(["--list"])
.stdout(
"
Available recipes:
",
)
.run();
}
#[test]
fn private_attribute_for_alias() {
Test::new()
.justfile(
"
[private]
alias f := foo
foo:
",
)
2023-01-03 22:31:56 -08:00
.args(["--list"])
.stdout(
"
Available recipes:
foo
",
)
.run();
}