mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
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:
committed by
GitHub
parent
48271d8c3e
commit
656f707a0b
@ -14,7 +14,7 @@ fn counter_clockwise() {
|
||||
"#,
|
||||
);
|
||||
|
||||
let expected = nu!(cwd: ".", pipeline(
|
||||
let expected = nu!(pipeline(
|
||||
r#"
|
||||
echo [
|
||||
[ column0, column1, column2, column3];
|
||||
@ -29,14 +29,18 @@ fn counter_clockwise() {
|
||||
"#,
|
||||
));
|
||||
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
format!("{} | {}", table, pipeline(r#"
|
||||
let actual = nu!(format!(
|
||||
"{} | {}",
|
||||
table,
|
||||
pipeline(
|
||||
r#"
|
||||
rotate --ccw
|
||||
| where column0 == EXPECTED
|
||||
| get column1 column2 column3
|
||||
| str join "-"
|
||||
"#)));
|
||||
"#
|
||||
)
|
||||
));
|
||||
|
||||
assert_eq!(actual.out, expected.out);
|
||||
}
|
||||
@ -55,7 +59,7 @@ fn clockwise() {
|
||||
"#,
|
||||
);
|
||||
|
||||
let expected = nu!(cwd: ".", pipeline(
|
||||
let expected = nu!(pipeline(
|
||||
r#"
|
||||
echo [
|
||||
[ column0, column1, column2, column3];
|
||||
@ -70,14 +74,18 @@ fn clockwise() {
|
||||
"#,
|
||||
));
|
||||
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
format!("{} | {}", table, pipeline(r#"
|
||||
let actual = nu!(format!(
|
||||
"{} | {}",
|
||||
table,
|
||||
pipeline(
|
||||
r#"
|
||||
rotate
|
||||
| where column3 == EXPECTED
|
||||
| get column0 column1 column2
|
||||
| str join "-"
|
||||
"#)));
|
||||
"#
|
||||
)
|
||||
));
|
||||
|
||||
assert_eq!(actual.out, expected.out);
|
||||
}
|
||||
|
Reference in New Issue
Block a user