nushell/tests/external_tests.rs
2019-08-29 01:31:56 -05:00

12 lines
155 B
Rust

mod helpers;
#[test]
fn external_command() {
let actual = nu!(
cwd: "tests/fixtures",
"echo 1"
);
assert!(actual.contains("1"));
}