mirror of
https://github.com/nushell/nushell.git
synced 2024-12-16 20:21:09 +01:00
11 lines
275 B
Rust
11 lines
275 B
Rust
mod helpers;
|
|
|
|
use helpers::in_directory as cwd;
|
|
|
|
#[test]
|
|
fn cd_directory_not_found() {
|
|
nu_error!(output, cwd("tests/fixtures"), "cd dir_that_does_not_exist");
|
|
|
|
assert!(output.contains("dir_that_does_not_exist"));
|
|
assert!(output.contains("directory not found"));
|
|
} |