mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
7221eb7f39
I have changed `assert!(a == b)` calls to `assert_eq!(a, b)`, which give better error messages. Similarly for `assert!(a != b)` and `assert_ne!(a, b)`. Basically all instances were comparing primitives (string slices or integers), so there is no loss of generality from special-case macros, I have also fixed a number of typos in comments, variable names, and a few user-facing messages.
44 lines
979 B
Rust
44 lines
979 B
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn loop_auto_print_in_each_iteration() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
mut total = 0;
|
|
loop {
|
|
if $total == 3 {
|
|
break;
|
|
} else {
|
|
$total += 1;
|
|
}
|
|
echo 1
|
|
}"#
|
|
);
|
|
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
|
// so our output will be `111`
|
|
// that's ok, our main concern is it auto print value in each iteration.
|
|
assert_eq!(actual.out, "111");
|
|
}
|
|
|
|
#[test]
|
|
fn loop_break_on_external_failed() {
|
|
let actual = nu!(
|
|
cwd: ".",
|
|
r#"
|
|
mut total = 0;
|
|
loop {
|
|
if $total == 3 {
|
|
break;
|
|
} else {
|
|
$total += 1;
|
|
}
|
|
echo 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");
|
|
}
|