diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-08 03:46:05 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-08 03:46:05 (GMT) |
commit | 4e4fb93e1735ec0cb869a258babcd802dbab84dc (patch) | |
tree | 6f34157308c5ba11fc280dc623f92fd1c6aeb28b /tests/auto/declarative/qdeclarativelanguage | |
parent | 9fed46c4420a594965b3bff1648cae8fe4e404f5 (diff) | |
download | Qt-4e4fb93e1735ec0cb869a258babcd802dbab84dc.zip Qt-4e4fb93e1735ec0cb869a258babcd802dbab84dc.tar.gz Qt-4e4fb93e1735ec0cb869a258babcd802dbab84dc.tar.bz2 |
Test import of a script requires qualifier.
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage')
3 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.errors.txt b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.errors.txt new file mode 100644 index 0000000..ebc936d --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.errors.txt @@ -0,0 +1 @@ +1:8:Script import requires a qualifier diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml new file mode 100644 index 0000000..2b2ab6b --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml @@ -0,0 +1,3 @@ +import "test.js" + +Item { } diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index 0e0bfda..bf10a01 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -283,6 +283,8 @@ void tst_qdeclarativelanguage::errors_data() QTest::newRow("property.6") << "property.6.qml" << "property.6.errors.txt" << false; QTest::newRow("property.7") << "property.7.qml" << "property.7.errors.txt" << false; + QTest::newRow("importScript.1") << "importscript.1.qml" << "importscript.1.errors.txt" << false; + QTest::newRow("Component.1") << "component.1.qml" << "component.1.errors.txt" << false; QTest::newRow("Component.2") << "component.2.qml" << "component.2.errors.txt" << false; QTest::newRow("Component.3") << "component.3.qml" << "component.3.errors.txt" << false; |