mirror of
https://github.com/nushell/nushell
synced 2024-11-11 23:47:07 +00:00
16 lines
451 B
Rust
16 lines
451 B
Rust
|
mod helpers;
|
||
|
|
||
|
use helpers::in_directory as cwd;
|
||
|
use helpers::Playground;
|
||
|
|
||
|
#[test]
|
||
|
fn cd_directory_not_found() {
|
||
|
let sandbox = Playground::setup_for("cd_directory_not_found_test").test_dir_name();
|
||
|
|
||
|
let full_path = format!("{}/{}", Playground::root(), sandbox);
|
||
|
|
||
|
nu_error!(output, cwd(&full_path), "cd dir_that_does_not_exist");
|
||
|
|
||
|
assert!(output.contains("dir_that_does_not_exist"));
|
||
|
assert!(output.contains("directory not found"));
|
||
|
}
|