mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +02:00
Readability improvement.
This commit is contained in:
@ -1,24 +1,31 @@
|
||||
mod helpers;
|
||||
|
||||
use h::{in_directory as cwd, Playground};
|
||||
use helpers as h;
|
||||
use std::path::{Path, PathBuf};
|
||||
use helpers::Playground;
|
||||
|
||||
use std::path::Path;
|
||||
|
||||
#[test]
|
||||
fn creates_directory() {
|
||||
Playground::setup("mkdir_test_1", |dirs, _| {
|
||||
nu!(cwd(dirs.test()), "mkdir my_new_directory");
|
||||
nu!(
|
||||
cwd: dirs.test(),
|
||||
"mkdir my_new_directory"
|
||||
);
|
||||
|
||||
let expected = dirs.test().join("my_new_directory");
|
||||
|
||||
assert!(h::dir_exists_at(expected));
|
||||
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");
|
||||
nu!(
|
||||
cwd: dirs.test(),
|
||||
"mkdir dir_1 dir_2 dir_3"
|
||||
);
|
||||
|
||||
assert!(h::files_exist_at(
|
||||
vec![Path::new("dir_1"), Path::new("dir_2"), Path::new("dir_3")],
|
||||
@ -30,11 +37,13 @@ fn accepts_and_creates_directories() {
|
||||
#[test]
|
||||
fn creates_intermediary_directories() {
|
||||
Playground::setup("mkdir_test_3", |dirs, _| {
|
||||
nu!(cwd(dirs.test()), "mkdir some_folder/another/deeper_one");
|
||||
nu!(
|
||||
cwd: dirs.test(),
|
||||
"mkdir some_folder/another/deeper_one"
|
||||
);
|
||||
|
||||
let mut expected = PathBuf::from(dirs.test());
|
||||
expected.push("some_folder/another/deeper_one");
|
||||
let expected = dirs.test().join("some_folder/another/deeper_one");
|
||||
|
||||
assert!(h::dir_exists_at(expected));
|
||||
assert!(expected.exists());
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user