mirror of
https://github.com/casey/just.git
synced 2024-11-22 18:34:06 +03:00
10 lines
123 B
Rust
10 lines
123 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn output() {
|
|
Test::new()
|
|
.arg("--man")
|
|
.stdout_regex("(?s).*.TH just 1.*")
|
|
.run();
|
|
}
|