Remove old nushell/merge engine-q

This commit is contained in:
JT
2022-02-07 14:54:06 -05:00
parent 10c4c50f1f
commit d70d91e559
430 changed files with 14543 additions and 7865 deletions

View File

@ -2,10 +2,6 @@ pub mod commands;
pub mod fs;
pub mod macros;
pub mod playground;
<<<<<<< HEAD
pub mod value;
=======
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
pub struct Outcome {
pub out: String,
@ -60,11 +56,7 @@ mod tests {
open los_tres_amigos.txt
| from-csv
| get rusty_luck
<<<<<<< HEAD
| str to-int
=======
| into int
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
| math sum
| echo "$it"
"#,
@ -72,11 +64,7 @@ mod tests {
assert_eq!(
actual,
<<<<<<< HEAD
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""#
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
);
}
}