]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/tests/__init__.py
Add email opt-out system
[patchwork] / apps / patchwork / tests / __init__.py
index 5ec3923797233de4d5bc96e4fbb5802e0d2c8332..0b56fc1fc561dd55b75f60fee87f1049b6fb32f9 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, mboxviews, updates
-
-modules = [patchparser, encodings, bundles, mboxviews, updates]
-
-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 *