Move dkim.util tests into test_util.

This commit is contained in:
William Grant
2011-03-16 23:20:52 +11:00
parent 9aea8985fb
commit f1c9fe1911
3 changed files with 71 additions and 44 deletions
+2
View File
@@ -22,9 +22,11 @@ import unittest
def test_suite():
from dkim.tests import (
test_dkim,
test_util,
)
modules = [
test_dkim,
test_util,
]
suites = map(lambda x: x.test_suite(), modules)
return unittest.TestSuite(suites)