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, 16 insertions, 0 deletions
diff --git a/tests/auto/qml/v4/data/objectToBool.qml b/tests/auto/qml/v4/data/objectToBool.qml
new file mode 100644
index 0000000000..8c8a67bee0
--- /dev/null
+++ b/tests/auto/qml/v4/data/objectToBool.qml
@@ -0,0 +1,16 @@
+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
+}
+