mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 14:41:00 +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
@ -3,7 +3,6 @@ use nu_test_support::nu;
|
||||
#[test]
|
||||
fn while_sum() {
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
"mut total = 0; mut x = 0; while $x <= 10 { $total = $total + $x; $x = $x + 1 }; $total"
|
||||
);
|
||||
|
||||
@ -12,10 +11,7 @@ fn while_sum() {
|
||||
|
||||
#[test]
|
||||
fn while_doesnt_auto_print_in_each_iteration() {
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
"mut total = 0; while $total < 2 { $total = $total + 1; echo 1 }"
|
||||
);
|
||||
let actual = nu!("mut total = 0; while $total < 2 { $total = $total + 1; echo 1 }");
|
||||
// Make sure we don't see any of these values in the output
|
||||
// As we do not auto-print loops anymore
|
||||
assert!(!actual.out.contains('1'));
|
||||
@ -23,10 +19,8 @@ fn while_doesnt_auto_print_in_each_iteration() {
|
||||
|
||||
#[test]
|
||||
fn while_break_on_external_failed() {
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
"mut total = 0; while $total < 2 { $total = $total + 1; print 1; nu --testbin fail }"
|
||||
);
|
||||
let actual =
|
||||
nu!("mut total = 0; while $total < 2 { $total = $total + 1; print 1; nu --testbin fail }");
|
||||
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
||||
// so our output will be `1`
|
||||
assert_eq!(actual.out, "1");
|
||||
@ -34,9 +28,7 @@ fn while_break_on_external_failed() {
|
||||
|
||||
#[test]
|
||||
fn failed_while_should_break_running() {
|
||||
let actual = nu!(
|
||||
cwd: ".",
|
||||
"mut total = 0; while $total < 2 { $total = $total + 1; nu --testbin fail }; print 3"
|
||||
);
|
||||
let actual =
|
||||
nu!("mut total = 0; while $total < 2 { $total = $total + 1; nu --testbin fail }; print 3");
|
||||
assert!(!actual.out.contains('3'));
|
||||
}
|
||||
|
Reference in New Issue
Block a user