mirror of
https://github.com/nushell/nushell
synced 2024-11-16 17:57:57 +00:00
b2c5af457e
This improves incremental build time when working on what was previously the root package. For example, previously all plugins would be rebuilt with a change to `src/commands/classified/external.rs`, but now only `nu-cli` will have to be rebuilt (and anything that depends on it).
47 lines
1.1 KiB
Rust
47 lines
1.1 KiB
Rust
use nu_test_support::fs::files_exist_at;
|
|
use nu_test_support::nu;
|
|
use nu_test_support::playground::Playground;
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn creates_directory() {
|
|
Playground::setup("mkdir_test_1", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir my_new_directory"
|
|
);
|
|
|
|
let expected = dirs.test().join("my_new_directory");
|
|
|
|
assert!(expected.exists());
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn accepts_and_creates_directories() {
|
|
Playground::setup("mkdir_test_2", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir dir_1 dir_2 dir_3"
|
|
);
|
|
|
|
assert!(files_exist_at(
|
|
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
|
dirs.test()
|
|
));
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn creates_intermediary_directories() {
|
|
Playground::setup("mkdir_test_3", |dirs, _| {
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
"mkdir some_folder/another/deeper_one"
|
|
);
|
|
|
|
let expected = dirs.test().join("some_folder/another/deeper_one");
|
|
|
|
assert!(expected.exists());
|
|
})
|
|
}
|