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