Pārlūkot izejas kodu

[add] some tests failing #31

isundil 9 gadi atpakaļ
vecāks
revīzija
5e76743931

+ 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]}