just/tests/private.rs
2022-12-20 00:44:19 -08:00

41 lines
493 B
Rust

use super::*;
#[test]
fn private_attribute_for_recipe() {
Test::new()
.justfile(
"
[private]
foo:
",
)
.args(&["--list"])
.stdout(
"
Available recipes:
",
)
.run();
}
#[test]
fn private_attribute_for_alias() {
Test::new()
.justfile(
"
[private]
alias f := foo
foo:
",
)
.args(&["--list"])
.stdout(
"
Available recipes:
foo
",
)
.run();
}