aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qml/qmllint/data/onAssignment.qml7
-rw-r--r--tests/auto/qml/qmllint/tst_qmllint.cpp4
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/onAssignment.qml b/tests/auto/qml/qmllint/data/onAssignment.qml
new file mode 100644
index 0000000000..b754a7f311
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/onAssignment.qml
@@ -0,0 +1,7 @@
+import QtQuick
+
+Item {
+ property bool pressed: false
+ SequentialAnimation on pressed {}
+ property int wrong: pressed.loops
+}
diff --git a/tests/auto/qml/qmllint/tst_qmllint.cpp b/tests/auto/qml/qmllint/tst_qmllint.cpp
index 18b5090dcf..12b8f5619f 100644
--- a/tests/auto/qml/qmllint/tst_qmllint.cpp
+++ b/tests/auto/qml/qmllint/tst_qmllint.cpp
@@ -292,6 +292,10 @@ void TestQmllint::dirtyQmlCode_data()
<< QStringLiteral("Signal handler for \"onSig\" has more formal parameters "
"than the signal it handles.")
<< QString();
+ QTest::newRow("OnAssignment")
+ << QStringLiteral("onAssignment.qml")
+ << QStringLiteral("Property \"loops\" not found on type \"bool\"")
+ << QString();
}
void TestQmllint::dirtyQmlCode()