summaryrefslogtreecommitdiffstats
path: root/tests/qmlauto/tst_compare.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qmlauto/tst_compare.qml')
-rw-r--r--tests/qmlauto/tst_compare.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/qmlauto/tst_compare.qml b/tests/qmlauto/tst_compare.qml
deleted file mode 100644
index 579ca41..0000000
--- a/tests/qmlauto/tst_compare.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import Qt 4.7
-import QtQuickTest 1.0
-
-TestCase {
- function test_compare_objects() {
- var testObj1 = {a: 1, b: "foo", c: true};
- compare(testObj1, testObj1, "Object identity");
-
- var testObj2 = {a: 1, b: "foo", c: true};
- compare(testObj1, testObj2, "Object equality");
- }
-}