mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
24 lines
480 B
Rust
24 lines
480 B
Rust
|
use nu_test_support::{nu, pipeline};
|
||
|
|
||
|
#[test]
|
||
|
fn print_to_stdout() {
|
||
|
let actual = nu!(
|
||
|
cwd: ".", pipeline(
|
||
|
"print 'hello world'"
|
||
|
)
|
||
|
);
|
||
|
assert!(actual.out.contains("hello world"));
|
||
|
assert!(actual.err.is_empty());
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn print_to_stderr() {
|
||
|
let actual = nu!(
|
||
|
cwd: ".", pipeline(
|
||
|
"print -e 'hello world'"
|
||
|
)
|
||
|
);
|
||
|
assert!(actual.out.is_empty());
|
||
|
assert!(actual.err.contains("hello world"));
|
||
|
}
|