mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 03:44:19 +01:00
11 lines
174 B
Rust
11 lines
174 B
Rust
mod helpers;
|
|
|
|
use helpers::in_directory as cwd;
|
|
|
|
#[test]
|
|
fn external_command() {
|
|
let actual = nu!(cwd("tests/fixtures"), "echo 1");
|
|
|
|
assert!(actual.contains("1"));
|
|
}
|