]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/tests/__init__.py
Add unconfirmed registration expiry
[patchwork] / apps / patchwork / tests / __init__.py
index 94d629be29696394614f51845e284c010448e5e1..5dfcdee27c19343c15612c7711581cf635f760b2 100644 (file)
 # along with Patchwork; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-import unittest
-from patchwork.tests import patchparser, encodings, bundles
-
-modules = [patchparser, encodings, bundles]
-
-def suite():
-    suite = unittest.TestSuite()
-    loader = unittest.TestLoader()
-
-    for module in modules:
-        tests = loader.loadTestsFromModule(module)
-        suite.addTests(tests)
-
-    return suite
+from patchwork.tests.patchparser import *
+from patchwork.tests.encodings import *
+from patchwork.tests.bundles import *
+from patchwork.tests.mboxviews import *
+from patchwork.tests.updates import *
+from patchwork.tests.filters import *
+from patchwork.tests.confirm import *
+from patchwork.tests.registration import *
+from patchwork.tests.user import *
+from patchwork.tests.mail_settings import *
+from patchwork.tests.notifications import *
+from patchwork.tests.list import *
+from patchwork.tests.person import *
+from patchwork.tests.expiry import *