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

@ -61,11 +61,8 @@ fn uniq_values() {
})
}
<<<<<<< HEAD
=======
// FIXME: jt: needs more work
#[ignore]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
#[test]
fn nested_json_structures() {
Playground::setup("uniq_test_3", |dirs, sandbox| {
@ -130,22 +127,14 @@ fn nested_json_structures() {
})
}
<<<<<<< HEAD
=======
// FIXME: jt: needs more work
#[ignore]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
#[test]
fn uniq_when_keys_out_of_order() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
<<<<<<< HEAD
echo '[{"a": "a", "b": [1,2,3]},{"b": [1,2,3], "a": "a"}]'
| from json
=======
[{"a": "a", "b": [1,2,3]}, {"b": [1,2,3], "a": "a"}]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
| uniq
| length
@ -155,22 +144,14 @@ fn uniq_when_keys_out_of_order() {
assert_eq!(actual.out, "1");
}
<<<<<<< HEAD
=======
// FIXME: jt: needs more work
#[ignore]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
#[test]
fn uniq_counting() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
<<<<<<< HEAD
echo '["A", "B", "A"]'
| from json
=======
["A", "B", "A"]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
| wrap item
| uniq --count
| where item == A
@ -182,12 +163,7 @@ fn uniq_counting() {
let actual = nu!(
cwd: "tests/fixtures/formats", pipeline(
r#"
<<<<<<< HEAD
echo '["A", "B", "A"]'
| from json
=======
echo ["A", "B", "A"]
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
| wrap item
| uniq --count
| where item == B