Command tests (#922)

* WIP command tests

* Finish marking todo tests

* update

* update

* Windows cd test ignoring
This commit is contained in:
JT
2022-02-03 21:01:45 -05:00
committed by GitHub
parent ac0b331f00
commit a008f1aa80
139 changed files with 10298 additions and 348 deletions

View File

@ -56,7 +56,7 @@ mod tests {
open los_tres_amigos.txt
| from-csv
| get rusty_luck
| str to-int
| into int
| math sum
| echo "$it"
"#,
@ -64,7 +64,7 @@ mod tests {
assert_eq!(
actual,
r#"open los_tres_amigos.txt | from-csv | get rusty_luck | str to-int | math sum | echo "$it""#
r#"open los_tres_amigos.txt | from-csv | get rusty_luck | into int | math sum | echo "$it""#
);
}
}