1
1
mirror of https://github.com/casey/just.git synced 2024-10-06 02:37:29 +03:00
just/tests/man.rs
2024-05-15 07:28:50 +00:00

10 lines
123 B
Rust

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