aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes
diff options
context:
space:
mode:
authorMarco Benelli <marco.benelli@theqtcompany.com>2015-11-20 17:14:25 +0100
committerMarco Benelli <marco.benelli@theqtcompany.com>2015-12-10 14:48:59 +0000
commit5f96bc07389382d534934120301c2d1a89d24657 (patch)
tree5dbf09e32de5cb278e76ccbac8f2def6af4b7b91 /tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes
parent177050862e644f9a279086b703cb04e06ea409b8 (diff)
qmlplugindump: add manual tests.v5.6.0-beta1
Added a small test infrastructure in order to run tests on sample projects and quickly define new test cases. Running tests will also compile (and clean) sample tests. Change-Id: Ibd0e48201dafe335198479d605d676ca5b753566 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes')
-rw-r--r--tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes b/tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes
new file mode 100644
index 0000000000..0e09c2cfc7
--- /dev/null
+++ b/tests/manual/qmlplugindump/tests/dumper/Versions/plugin.qmltypes
@@ -0,0 +1,21 @@
+import QtQuick.tooling 1.2
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+//
+// This file was auto-generated by:
+// 'qmlplugindump tests.dumper.versions 1.1 .'
+
+Module {
+ dependencies: ["QtQuick 2.0"]
+ Component {
+ name: "Versions"
+ defaultProperty: "data"
+ prototype: "QQuickItem"
+ exports: ["Versions 1.0", "Versions 1.1"]
+ exportMetaObjectRevisions: [0, 1]
+ Property { name: "foo"; type: "int" }
+ Property { name: "bar"; revision: 1; type: "int" }
+ Property { name: "baz"; revision: 2; type: "int" }
+ }
+}