20 lines
217 B
Rust
20 lines
217 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn attribute() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
[private]
|
|
foo:
|
|
",
|
|
)
|
|
.args(&["--list"])
|
|
.stdout(
|
|
"
|
|
Available recipes:
|
|
",
|
|
)
|
|
.run();
|
|
}
|