aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml b/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml
deleted file mode 100644
index a52453e8fa..0000000000
--- a/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 2.0
-import "createComponent_lib.js" as Test
-
-Item {
- property int status: Component.Null
- property int readValue: 0
-
- Component.onCompleted: {
- status = Test.loadComponent()
- readValue = Test.createComponent().test;
- }
-}