mirror of
https://github.com/uutils/coreutils
synced 2024-12-19 17:43:52 +00:00
99b39e4237
Although for some tests this adds characters we still use them there because the brevity cost is now worth the benefit in terms of instant, natural-language readability and recognizability for people not familiar with this tests of this module or even the project
48 lines
1.4 KiB
Rust
48 lines
1.4 KiB
Rust
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "ptx";
|
|
fn new_ucmd() -> UCommand {
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_roff_no_ref() {
|
|
new_ucmd().args(&["-G", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_roff_input_ref() {
|
|
new_ucmd().args(&["-G", "-r", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_input_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_roff_auto_ref() {
|
|
new_ucmd().args(&["-G", "-A", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_auto_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_tex_no_ref() {
|
|
new_ucmd().args(&["-G", "-T", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_no_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_tex_input_ref() {
|
|
new_ucmd().args(&["-G", "-T", "-r", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_input_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_tex_auto_ref() {
|
|
new_ucmd().args(&["-G", "-T", "-A", "-R", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_auto_ref.expected");
|
|
}
|
|
|
|
#[test]
|
|
fn gnu_ext_disabled_ignore_and_only_file() {
|
|
new_ucmd().args(&["-G", "-o", "only", "-i", "ignore", "input"])
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_ignore_and_only_file.expected");
|
|
}
|