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