summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptclass
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-08-10 13:01:42 +0200
committerKent Hansen <khansen@trolltech.com>2009-08-10 13:01:42 +0200
commitfab932713af6dfa7aad06ddfde774d25f5222472 (patch)
treef96e87bbc0fe3a5448c105bf161fd4bf5bfa464d /tests/auto/qscriptclass
parent34511e1001471ed4041794640aefe508f50ad01c (diff)
implement QScriptClass property query semantics of old back-end
Look up the property as a normal JS property before falling back to the dynamic query mechanism. This is the documented behavior.
Diffstat (limited to 'tests/auto/qscriptclass')
-rw-r--r--tests/auto/qscriptclass/tst_qscriptclass.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/qscriptclass/tst_qscriptclass.cpp b/tests/auto/qscriptclass/tst_qscriptclass.cpp
index d957ee3272..2bc8778162 100644
--- a/tests/auto/qscriptclass/tst_qscriptclass.cpp
+++ b/tests/auto/qscriptclass/tst_qscriptclass.cpp
@@ -652,9 +652,11 @@ void tst_QScriptClass::getAndSetProperty()
QVERIFY(cls.lastQueryPropertyFlags() == QScriptClass::HandlesWriteAccess);
// re-read property
+ // When a QScriptClass doesn't want to handle a property write,
+ // that property becomes a normal property and the QScriptClass
+ // shall not be queried about it again.
cls.clearReceivedArgs();
QVERIFY(o.property(s).strictlyEquals(num));
- QEXPECT_FAIL("", "What's the purpose of this check?", Continue);
QVERIFY(!cls.lastQueryPropertyObject().isValid());
}
}