Преглед на файлове

[add] some tests failing #31

isundil преди 9 години
родител
ревизия
5e76743931
променени са 8 файла, в които са добавени 56 реда и са изтрити 0 реда
  1. 11 0
      test/testDiffObj.1.json
  2. 11 0
      test/testDiffObj.2.json
  3. 5 0
      test/testDiffObj.3.json
  4. 5 0
      test/testDiffObj.4.json
  5. 11 0
      test/testDiffObj.5.json
  6. 11 0
      test/testDiffObj.6.json
  7. 1 0
      test/testDiffObjSimple.1.json
  8. 1 0
      test/testDiffObjSimple.2.json

+ 11 - 0
test/testDiffObj.1.json

@@ -0,0 +1,11 @@
+{
+    "a": true
+    ,"b": true
+    ,"c": false
+    ,"d": [
+        1
+        ,2
+        ,3
+        ,4
+    ]
+}

+ 11 - 0
test/testDiffObj.2.json

@@ -0,0 +1,11 @@
+{
+    "a": false
+    ,"b": true
+    ,"c": null
+    ,"d": [
+        4
+        ,2
+        ,7
+        ,4
+    ]
+}

+ 5 - 0
test/testDiffObj.3.json

@@ -0,0 +1,5 @@
+{
+    "a": true
+    ,"b": true
+    ,"c": false
+}

+ 5 - 0
test/testDiffObj.4.json

@@ -0,0 +1,5 @@
+{
+    "a": null
+    ,"b": true
+    ,"c": false
+}

+ 11 - 0
test/testDiffObj.5.json

@@ -0,0 +1,11 @@
+{
+    "a": false
+    ,"b": false
+    ,"c": true
+    ,"d": {
+        "1": 42
+        ,"2": 43
+        ,"3": 44
+        ,"4": 45
+    }
+}

+ 11 - 0
test/testDiffObj.6.json

@@ -0,0 +1,11 @@
+{
+    "a": true
+    ,"b": true
+    ,"c": false
+    ,"d": {
+        "1": 46
+        ,"2": 47
+        ,"3": 48
+        ,"4": 49
+    }
+}

+ 1 - 0
test/testDiffObjSimple.1.json

@@ -0,0 +1 @@
+{"a":[1, 3, 4]}

+ 1 - 0
test/testDiffObjSimple.2.json

@@ -0,0 +1 @@
+{"a":[1, 2, 3]}