aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2020-06-24 13:05:55 +0200
committerMaximilian Goldstein <max.goldstein@qt.io>2020-06-25 09:02:08 +0200
commit88b3d1fd26b6b566ef00ae728051bff29455eea5 (patch)
tree3c84fb5d9820f955051c6b3fcbce9065ce585e48 /tests/auto/qml/qmlformat
parentdd71c43b9718be3523ed6b307a3402f88de070e1 (diff)
qmlformat: Fix inline components
Fixes: QTBUG-85189 Change-Id: I2b30595b44d14b89406b126d3d148f51f8bfbca4 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlformat')
-rw-r--r--tests/auto/qml/qmlformat/data/inlineComponents.formatted.qml10
-rw-r--r--tests/auto/qml/qmlformat/data/inlineComponents.qml6
-rw-r--r--tests/auto/qml/qmlformat/tst_qmlformat.cpp7
3 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/inlineComponents.formatted.qml b/tests/auto/qml/qmlformat/data/inlineComponents.formatted.qml
new file mode 100644
index 0000000000..5349280f2b
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/inlineComponents.formatted.qml
@@ -0,0 +1,10 @@
+Item {
+ component CustomText: Text {
+ Text {
+ color: "red"
+ text: "Test Text"
+ }
+
+ }
+
+}
diff --git a/tests/auto/qml/qmlformat/data/inlineComponents.qml b/tests/auto/qml/qmlformat/data/inlineComponents.qml
new file mode 100644
index 0000000000..6eeb3dd965
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/inlineComponents.qml
@@ -0,0 +1,6 @@
+Item {
+component CustomText: Text {
+color: "red"
+text: "Test Text"
+}
+}
diff --git a/tests/auto/qml/qmlformat/tst_qmlformat.cpp b/tests/auto/qml/qmlformat/tst_qmlformat.cpp
index 9e72b587b9..cda7f0d80f 100644
--- a/tests/auto/qml/qmlformat/tst_qmlformat.cpp
+++ b/tests/auto/qml/qmlformat/tst_qmlformat.cpp
@@ -54,6 +54,7 @@ private Q_SLOTS:
void testStatesAndTransitions();
void testLargeBindings();
void testVerbatimStrings();
+ void testInlineComponents();
void testQtbug85003();
@@ -240,6 +241,12 @@ void TestQmlformat::testVerbatimStrings()
readTestFile("verbatimString.formatted.qml"));
}
+void TestQmlformat::testInlineComponents()
+{
+ QCOMPARE(runQmlformat(testFile("inlineComponents.qml"), false, true),
+ readTestFile("inlineComponents.formatted.qml"));
+}
+
void TestQmlformat::testNestedIf()
{
QCOMPARE(runQmlformat(testFile("nestedIf.qml"), false, true),