[Zodb-checkins] CVS: Zope/lib/python/BTrees/tests - testBTrees.py:1.22 testConflict.py:1.9
Andreas Jung
andreas@zope.com
Fri, 19 Oct 2001 13:52:46 -0400
Update of /cvs-repository/Zope/lib/python/BTrees/tests
In directory cvs.zope.org:/tmp/cvs-serv25254/tests
Modified Files:
testBTrees.py testConflict.py
Log Message:
now running also standalone
=== Zope/lib/python/BTrees/tests/testBTrees.py 1.21 => 1.22 ===
return alltests
+
+
## utility functions
def lsubtract(l1, l2):
@@ -818,4 +820,11 @@
def realseq(itemsob):
return map(lambda x: x, itemsob)
+
+
+def main():
+ TextTestRunner().run(test_suite())
+
+if __name__ == '__main__':
+ main()
=== Zope/lib/python/BTrees/tests/testConflict.py 1.8 => 1.9 ===
def realseq(itemsob):
return map(lambda x: x, itemsob)
+
+def main():
+ TextTestRunner().run(test_suite())
+
+if __name__ == '__main__':
+ main()
+