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

@ -19,11 +19,7 @@ fn find_with_list_search_with_char() {
let actual = nu!(
cwd: ".", pipeline(
r#"
<<<<<<< HEAD
[moe larry curly] | find l | to json
=======
[moe larry curly] | find l | to json -r
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
"#
));
@ -82,19 +78,11 @@ fn find_with_filepath_search_with_string() {
ls
| get name
| find arep
<<<<<<< HEAD
| to json
"#
));
assert_eq!(actual.out, r#""arepas.clu""#);
=======
| to json -r
"#
));
assert_eq!(actual.out, r#"["arepas.clu"]"#);
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
})
}
@ -114,11 +102,7 @@ fn find_with_filepath_search_with_multiple_patterns() {
ls
| get name
| find arep ami
<<<<<<< HEAD
| to json
=======
| to json -r
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
"#
));