[Zope3-checkins] CVS: Zope3/src/persistence/tests - test_list.py:1.1.2.2
Guido van Rossum
guido@python.org
Tue, 24 Dec 2002 10:56:34 -0500
Update of /cvs-repository/Zope3/src/persistence/tests
In directory cvs.zope.org:/tmp/cvs-serv32177
Modified Files:
Tag: NameGeddon-branch
test_list.py
Log Message:
check -> test.
=== Zope3/src/persistence/tests/test_list.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/persistence/tests/test_list.py:1.1.2.1 Mon Dec 23 14:30:41 2002
+++ Zope3/src/persistence/tests/test_list.py Tue Dec 24 10:56:34 2002
@@ -22,7 +22,8 @@
l2 = [0, 1]
class TestPList(unittest.TestCase):
- def checkTheWorld(self):
+
+ def testTheWorld(self):
# Test constructors
u = PersistentList()
u0 = PersistentList(l0)
@@ -211,9 +212,8 @@
def test_suite():
- return unittest.makeSuite(TestPList, 'check')
+ return unittest.makeSuite(TestPList)
if __name__ == "__main__":
loader = unittest.TestLoader()
- loader.testMethodPrefix = "check"
unittest.main(testLoader=loader)