mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-16 10:11:01 +00:00
- ref: <https://users.rust-lang.org/t/imports-can-only-refer-to-extern-crate-names/24388> @@ <https://archive.is/iCaXp>
9 lines
213 B
Rust
9 lines
213 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_combine_pairs_of_lines() {
|
|
new_ucmd!()
|
|
.args(&["-s", "-d", "\t\n", "html_colors.txt"])
|
|
.run()
|
|
.stdout_is_fixture("html_colors.expected");
|
|
}
|