aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/Things/plugins.qmltypes')
-rw-r--r--tests/auto/qml/qmllint/data/Things/plugins.qmltypes17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/Things/plugins.qmltypes b/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
new file mode 100644
index 0000000000..9d81c21070
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
@@ -0,0 +1,17 @@
+import QtQuick.tooling 1.2
+Module {
+ dependencies: []
+ Component {
+ name: "SomethingEntirelyStrange"
+ prototype: "QObject"
+ Enum {
+ name: "AnEnum"
+ values: {
+ "AAA": 0,
+ "BBB": 1,
+ "CCC": 2
+ }
+ }
+ Property { name: "palette"; type: "QPalette" }
+ }
+}