diff --git a/doc/examples/operator__equal.output b/doc/examples/operator__equal.output index 780673556..e9dfd7551 100644 --- a/doc/examples/operator__equal.output +++ b/doc/examples/operator__equal.output @@ -1,4 +1,4 @@ [1,2,3] == [1,2,4] false {"A":"a","B":"b"} == {"A":"a","B":"b"} true -17 == 17.0 true +17 == 17 true "foo" == "bar" false diff --git a/doc/examples/operator__equal.test b/doc/examples/operator__equal.test new file mode 100644 index 000000000..e9dfd7551 --- /dev/null +++ b/doc/examples/operator__equal.test @@ -0,0 +1,4 @@ +[1,2,3] == [1,2,4] false +{"A":"a","B":"b"} == {"A":"a","B":"b"} true +17 == 17 true +"foo" == "bar" false diff --git a/doc/examples/operator__notequal.output b/doc/examples/operator__notequal.output index 9eba626e3..ddd838b4a 100644 --- a/doc/examples/operator__notequal.output +++ b/doc/examples/operator__notequal.output @@ -1,4 +1,4 @@ [1,2,3] == [1,2,4] true {"A":"a","B":"b"} == {"A":"a","B":"b"} false -17 == 17.0 false +17 == 17 false "foo" == "bar" true diff --git a/doc/examples/operator__notequal.test b/doc/examples/operator__notequal.test new file mode 100644 index 000000000..ddd838b4a --- /dev/null +++ b/doc/examples/operator__notequal.test @@ -0,0 +1,4 @@ +[1,2,3] == [1,2,4] true +{"A":"a","B":"b"} == {"A":"a","B":"b"} false +17 == 17 false +"foo" == "bar" true