diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-01-11 06:32:58 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-01-11 06:35:50 (GMT) |
commit | 2ec9b259f63a7305cf221425049cd728adb84bf2 (patch) | |
tree | 4958d0c84e7bf1ff745f3cb1b6cd079ca9ac8f2e /tests | |
parent | 8562344632efce66d58490344d557d5d217994d4 (diff) | |
download | Qt-2ec9b259f63a7305cf221425049cd728adb84bf2.zip Qt-2ec9b259f63a7305cf221425049cd728adb84bf2.tar.gz Qt-2ec9b259f63a7305cf221425049cd728adb84bf2.tar.bz2 |
Use QMetaObject::disconnectOne() in QML
QTBUG-6781
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp b/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp index a153296..3aa1aff 100644 --- a/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp +++ b/tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp @@ -216,6 +216,13 @@ void tst_qmlecmascript::methods() QCOMPARE(object->property("test2").toInt(), 17); QCOMPARE(object->property("test3").toInt(), 16); } + + { + QmlComponent component(&engine, TEST_FILE("methods.5.qml")); + QObject *object = component.create(); + QVERIFY(object != 0); + QCOMPARE(object->property("test").toInt(), 9); + } } void tst_qmlecmascript::bindingLoop() @@ -1051,6 +1058,7 @@ void tst_qmlecmascript::compositePropertyType() delete object; } +// QTBUG-6781 void tst_qmlecmascript::bug1() { QmlComponent component(&engine, TEST_FILE("bug.1.qml")); @@ -1065,7 +1073,6 @@ void tst_qmlecmascript::bug1() object->setProperty("b", true); - QEXPECT_FAIL("", "QTBUG-6781", Continue); QCOMPARE(object->property("test").toInt(), 9); delete object; |