Commit 0cc6d351 authored by Barry Warsaw's avatar Barry Warsaw

PyUnit test suite framework for BSDDB storage tests.

parent a86fd01a
# Framework for running Unit tests
import sys
import unittest
MODULES = ('commitlog', 'create', 'virgin')
def suite():
alltests = unittest.TestSuite()
for mod in [__import__('test_'+mod) for mod in MODULES]:
alltests.addTest(mod.suite())
return alltests
if __name__ == '__main__':
unittest.main(defaultTest='suite')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment