mirror of
https://github.com/casey/just.git
synced 2025-07-07 17:45:00 +00:00
9 lines
123 B
Rust
9 lines
123 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn output() {
|
|
Test::new()
|
|
.arg("--man")
|
|
.stdout_regex("(?s).*.TH just 1.*")
|
|
.run();
|
|
}
|