nushell/tests/external_tests.rs

12 lines
155 B
Rust
Raw Normal View History

mod helpers;
#[test]
fn external_command() {
2019-08-29 08:31:56 +02:00
let actual = nu!(
cwd: "tests/fixtures",
"echo 1"
);
2019-08-29 02:32:42 +02:00
assert!(actual.contains("1"));
}