forked from extern/nushell
61455b457d
# Description This fixes up some clippy warnings and removes some old names/info from our unit tests # User-Facing Changes Internal changes only # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
74 lines
2.0 KiB
Rust
74 lines
2.0 KiB
Rust
use nu_test_support::fs::{files_exist_at, Stub::EmptyFile};
|
|
use nu_test_support::nu;
|
|
use nu_test_support::playground::Playground;
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn knows_the_filesystems_entered() {
|
|
Playground::setup("enter_test_1", |dirs, sandbox| {
|
|
sandbox
|
|
.within("red_pill")
|
|
.with_files(vec![
|
|
EmptyFile("andres.nu"),
|
|
EmptyFile("jtnu"),
|
|
EmptyFile("yehuda.nu"),
|
|
])
|
|
.within("blue_pill")
|
|
.with_files(vec![
|
|
EmptyFile("bash.nxt"),
|
|
EmptyFile("korn.nxt"),
|
|
EmptyFile("powedsh.nxt"),
|
|
])
|
|
.mkdir("expected");
|
|
|
|
let red_pill_dir = dirs.test().join("red_pill");
|
|
let blue_pill_dir = dirs.test().join("blue_pill");
|
|
let expected = dirs.test().join("expected");
|
|
let expected_recycled = expected.join("recycled");
|
|
|
|
nu!(
|
|
cwd: dirs.test(),
|
|
r#"
|
|
enter expected
|
|
mkdir recycled
|
|
enter ../red_pill
|
|
mv jtnu ../expected
|
|
enter ../blue_pill
|
|
cp *.nxt ../expected/recycled
|
|
p
|
|
p
|
|
mv ../red_pill/yehuda.nu .
|
|
n
|
|
mv andres.nu ../expected/andres.nu
|
|
exit
|
|
cd ..
|
|
rm red_pill --recursive
|
|
exit
|
|
n
|
|
rm blue_pill --recursive
|
|
exit
|
|
"#
|
|
);
|
|
|
|
assert!(!red_pill_dir.exists());
|
|
assert!(files_exist_at(
|
|
vec![
|
|
Path::new("andres.nu"),
|
|
Path::new("jtnu"),
|
|
Path::new("yehuda.nu"),
|
|
],
|
|
expected
|
|
));
|
|
|
|
assert!(!blue_pill_dir.exists());
|
|
assert!(files_exist_at(
|
|
vec![
|
|
Path::new("bash.nxt"),
|
|
Path::new("korn.nxt"),
|
|
Path::new("powedsh.nxt"),
|
|
],
|
|
expected_recycled
|
|
));
|
|
})
|
|
}
|