aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/objectToBool.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/v4/data/objectToBool.qml')
-rw-r--r--tests/auto/qml/v4/data/objectToBool.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/qml/v4/data/objectToBool.qml b/tests/auto/qml/v4/data/objectToBool.qml
deleted file mode 100644
index 8c8a67bee0..0000000000
--- a/tests/auto/qml/v4/data/objectToBool.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- property QtObject prop1: null
- property QtObject prop2: QtObject {}
-
- property bool test1: prop1 ? true : false
- property bool test2: prop2 ? true : false
-
- property bool test3: prop1 == false
- property bool test4: prop1 === false
-
- property bool test5: prop2 == false
- property bool test6: prop2 === false
-}
-