diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-01-20 03:18:58 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-01-20 03:19:25 (GMT) |
commit | f95956a6cc61d0c05d96e2f8027167f51ed7dbea (patch) | |
tree | a8120cb448ca77bca7a8cbfe8dc4fc16204dea8b /tests | |
parent | a7506ce64ae9e80a202e0ffdaa86785d1d117c78 (diff) | |
download | Qt-f95956a6cc61d0c05d96e2f8027167f51ed7dbea.zip Qt-f95956a6cc61d0c05d96e2f8027167f51ed7dbea.tar.gz Qt-f95956a6cc61d0c05d96e2f8027167f51ed7dbea.tar.bz2 |
Revert previous change. Does not work for statically defined list models.
This reverts commit bc6940f53891856a3a6c3d8f1c25a8eaada90b33.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qmllistmodel/tst_qmllistmodel.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/declarative/qmllistmodel/tst_qmllistmodel.cpp b/tests/auto/declarative/qmllistmodel/tst_qmllistmodel.cpp index b43b699..0986d20 100644 --- a/tests/auto/declarative/qmllistmodel/tst_qmllistmodel.cpp +++ b/tests/auto/declarative/qmllistmodel/tst_qmllistmodel.cpp @@ -150,12 +150,7 @@ void tst_QmlListModel::dynamic_data() QTest::newRow("listprop1a") << "{append({'foo':123,'bars':[{'a':1},{'a':2},{'a':3}]});count}" << 1 << ""; QTest::newRow("listprop1b") << "{append({'foo':123,'bars':[{'a':1},{'a':2},{'a':3}]});get(0).bars.get(1).a}" << 2 << ""; - QTest::newRow("listprop1c") << "{append({'foo':123,'bars':[{'a':1},{'a':2},{'a':3}]});get(0).bars.count}" << 3 << ""; QTest::newRow("listprop2a") << "{append({'foo':123,'bars':[{'a':1},{'a':2},{'a':3}]});get(0).bars.append({'a':4});get(0).bars.get(3).a}" << 4 << ""; - - QTest::newRow("list-0-items") << "{append({'foo':[]});get(0).foo.count}" << 0 << ""; - QTest::newRow("list-1-item") << "{append({'foo':[1]});get(0).foo.count}" << 1 << ""; - QTest::newRow("list-multi-items") << "{append({'foo':[1,2,3]});get(0).foo.count}" << 3 << ""; } void tst_QmlListModel::dynamic() |