1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-15 17:51:07 +00:00
uutils-coreutils/tests/stdbuf.rs

16 lines
443 B
Rust

#[macro_use]
mod common;
use common::util::*;
static UTIL_NAME: &'static str = "stdbuf";
#[test]
fn test_stdbuf_unbuffered_stdout() {
let (_, mut ucmd) = testing(UTIL_NAME);
// This is a basic smoke test
let result = ucmd.args(&["-o0", "head"])
.run_piped_stdin("The quick brown fox jumps over the lazy dog.");
assert_eq!(result.stdout,
"The quick brown fox jumps over the lazy dog.");
}