mirror of
https://github.com/nushell/nushell
synced 2024-11-13 00:17:06 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
mod helpers;
|
|
|
|
#[test]
|
|
fn external_command() {
|
|
let actual = nu!(
|
|
cwd: "tests/fixtures",
|
|
"echo 1"
|
|
);
|
|
|
|
assert!(actual.contains("1"));
|
|
}
|