mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +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");
|
|
}
|