aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml')
-rw-r--r--tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
new file mode 100644
index 0000000000..e8ef609fed
--- /dev/null
+++ b/tests/auto/qml/qqmlecmascript/data/include_remote_missing.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.0
+import "include_remote_missing.js" as IncludeTest
+
+QtObject {
+ property bool done: false
+
+ property bool test1: false
+ property bool test2: false
+ property bool test3: false
+
+ Component.onCompleted: IncludeTest.go();
+}