aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml
deleted file mode 100644
index bf4ab6fd7a..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/qobjectDerivedArgument.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-import Qt.test 1.0
-
-MyQmlObject {
- id: root
- stringProperty: 'hello'
- property var child
-
- property bool result: false
-
- Component.onCompleted: {
- child = invokable.createMyQmlObject('goodbye');
-
- result = (invokable.getStringProperty(root) == 'hello') &&
- (invokable.getStringProperty(child) == 'goodbye');
- }
-}