aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml b/tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml
deleted file mode 100644
index 06ef48b82b..0000000000
--- a/tests/auto/declarative/qdeclarativeqt/data/resolvedUrl.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- property string result
- property bool isString: false
-
- Component.onCompleted: {
- var a = Qt.resolvedUrl("resolvedUrl.qml");
- result = a;
- isString = (typeof a) == "string"
- }
-}
-