summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2014-10-28 17:04:08 +0100
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-10-30 13:40:39 +0100
commitd7e202fbd6c3fca115f62c09768ea732d6de4e13 (patch)
tree4e10369805dc83be3dc3baa0d9ec0e3f1fc2d11b /tests
parent60893230979e75ec10696fbb9686ad76e60aec0c (diff)
Add check for expected default properties.
Change-Id: I315c958bbc3cbc45452db4787ef3ab27750ebbaa Reviewed-by: Niels Weber <niels.weber@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/installer/scriptengine/tst_scriptengine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/installer/scriptengine/tst_scriptengine.cpp b/tests/auto/installer/scriptengine/tst_scriptengine.cpp
index 54f19eda2..62806a2c6 100644
--- a/tests/auto/installer/scriptengine/tst_scriptengine.cpp
+++ b/tests/auto/installer/scriptengine/tst_scriptengine.cpp
@@ -100,6 +100,9 @@ private slots:
QCOMPARE(global.hasProperty(QLatin1String("buttons")), true);
QCOMPARE(global.hasProperty(QLatin1String("QInstaller")), true);
QCOMPARE(global.hasProperty(QLatin1String("QMessageBox")), true);
+
+ QCOMPARE(global.hasProperty(QLatin1String("gui")), true);
+ QCOMPARE(global.hasProperty(QLatin1String("qsTr")), true);
}
void testBrokenJSMethodConnect()