2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-15 05:28:45 +00:00
nushell/tests/external_tests.rs

12 lines
161 B
Rust
Raw Normal View History

mod helpers;
#[test]
fn external_command() {
2019-08-29 01:31:56 -05:00
let actual = nu!(
2019-09-11 10:36:50 -04:00
cwd: "tests/fixtures",
"echo 1"
2019-08-29 01:31:56 -05:00
);
2019-08-28 19:32:42 -05:00
assert!(actual.contains("1"));
}