]> granicus.if.org Git - jq/commitdiff
Add some in/equality test cases
authorDamian Gryski <damian@gryski.com>
Tue, 23 Oct 2012 19:12:47 +0000 (21:12 +0200)
committerDamian Gryski <damian@gryski.com>
Tue, 23 Oct 2012 19:12:47 +0000 (21:12 +0200)
testdata

index 6f04a1d52026cf752e50e34d22b108885ce95e74..8cd5e27caedc03d327201f3fdfcadf0e3db9ecf1 100644 (file)
--- a/testdata
+++ b/testdata
@@ -372,4 +372,26 @@ def inc(x): x |= .+1; inc(.[].a)
 
 [10 >= 0, 10 >= 10, 10 >= 20, 10 <= 0, 10 <= 10, 10 <= 20]
 {}
-[true,true,false,false,true,true]
\ No newline at end of file
+[true,true,false,false,true,true]
+
+# And some in/equality tests
+[ 10 == 10, 10 != 10, 10 != 11, 10 == 11]
+{}
+[true,false,true,false]
+
+["hello" == "hello", "hello" != "hello", "hello" == "world", "hello" != "world" ]
+{}
+[true,false,false,true]
+
+[[1,2,3] == [1,2,3], [1,2,3] != [1,2,3], [1,2,3] == [4,5,6], [1,2,3] != [4,5,6]]
+{}
+[true,false,false,true]
+
+[{"foo":42} == {"foo":42},{"foo":42} != {"foo":42}, {"foo":42} != {"bar":42}, {"foo":42} == {"bar":42}]
+{}
+[true,false,true,false]
+
+# ugly complicated thing
+[{"foo":[1,2,{"bar":18},"world"]} == {"foo":[1,2,{"bar":18},"world"]},{"foo":[1,2,{"bar":18},"world"]} == {"foo":[1,2,{"bar":19},"world"]}]
+{}
+[true,false]