mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
Merge branch 'master' of github.com:uutils/coreutils into feature/preserve_timestamps_#1758
This commit is contained in:
commit
8471088d6d
4 changed files with 38 additions and 5 deletions
|
@ -8,6 +8,22 @@ fn gnu_ext_disabled_roff_no_ref() {
|
|||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_no_ref_empty_word_regexp() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-R", "-W", "", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_no_ref_word_regexp_exc_space() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-R", "-W", "[^\t\n]+", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref_word_regexp_exc_space.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_input_ref() {
|
||||
new_ucmd!()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue