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