nushell/tests/command_cd_tests.rs
Andrés N. Robalino 1b7dd52713 Tests pass.
2019-08-07 13:23:02 -05:00

16 lines
No EOL
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"));
}