mirror of
https://github.com/casey/just
synced 2024-11-05 18:47:01 +00:00
6 lines
181 B
Rust
6 lines
181 B
Rust
use super::*;
|
|
|
|
pub(crate) fn assert_stdout(output: &std::process::Output, stdout: &str) {
|
|
assert_success(output);
|
|
assert_eq!(String::from_utf8_lossy(&output.stdout), stdout);
|
|
}
|