forked from extern/nushell
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"));
|
|
}
|