Clean up tests containing unnecessary cwd: tokens (#9692)

# Description
The working directory doesn't have to be set for those tests (or would
be the default anyways). When appropriate also remove calls to the
`pipeline()` function. In most places kept the diff minimal and only
removed the superfluous part to not pollute the blame view. With simpler
tests also simplified things to make them more readable overall (this
included removal of the raw string literal).

Work for #8670
This commit is contained in:
Stefan Holderbach
2023-07-17 18:43:51 +02:00
committed by GitHub
parent 48271d8c3e
commit 656f707a0b
70 changed files with 611 additions and 1344 deletions

View File

@ -1,4 +1,4 @@
use nu_test_support::{nu, pipeline};
use nu_test_support::nu;
#[test]
fn can_get_reverse_first() {
@ -12,7 +12,7 @@ fn can_get_reverse_first() {
#[test]
fn fail_on_non_iterator() {
let actual = nu!(cwd: ".", pipeline("1 | reverse"));
let actual = nu!("1 | reverse");
assert!(actual.err.contains("command doesn't support"));
}