mirror of
https://github.com/nushell/nushell.git
synced 2025-08-17 11:51:46 +02:00
Slim down tests (#9021)
This PR just tidies up some tests by removing unused code: 1. If the filesystem is not touched, don't use the filesystem playground/sandbox 2. If the filesystem is not touched, don't specify the `cwd` 3. If the command is short, don't bother wrapping it in `pipeline()` 4. If the command doesn't have quotes, don't bother with a `r#"..."#` raw string Part of #8670.
This commit is contained in:
@ -117,19 +117,14 @@ fn ls_sort_by_type_name_insensitive() {
|
||||
|
||||
#[test]
|
||||
fn no_column_specified_fails() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
[2 0 1] | sort-by
|
||||
"#
|
||||
));
|
||||
let actual = nu!("[2 0 1] | sort-by");
|
||||
|
||||
assert!(actual.err.contains("missing parameter"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fail_on_non_iterator() {
|
||||
let actual = nu!(cwd: ".", pipeline("1 | sort-by"));
|
||||
let actual = nu!("1 | sort-by");
|
||||
|
||||
assert!(actual.err.contains("only_supports_this_input_type"));
|
||||
}
|
||||
|
Reference in New Issue
Block a user