mirror of
https://github.com/nushell/nushell.git
synced 2024-11-15 04:54:46 +01:00
13 lines
262 B
Rust
13 lines
262 B
Rust
mod helpers;
|
|
|
|
#[test]
|
|
fn cd_directory_not_found() {
|
|
let actual = nu_error!(
|
|
cwd: "tests/fixtures",
|
|
"cd dir_that_does_not_exist"
|
|
);
|
|
|
|
assert!(actual.contains("dir_that_does_not_exist"));
|
|
assert!(actual.contains("directory not found"));
|
|
}
|