just/tests/man.rs

10 lines
123 B
Rust
Raw Normal View History

2024-05-15 00:28:50 -07:00
use super::*;
#[test]
fn output() {
Test::new()
.arg("--man")
.stdout_regex("(?s).*.TH just 1.*")
.run();
}