X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=apps%2Fpatchwork%2Ftests%2F__init__.py;h=d9ed3462131cea756f8384e6382b0c97db62ec5b;hb=97d47d0e72c576ba3a09e85fc05e1ba6e0fb6d32;hp=5ec3923797233de4d5bc96e4fbb5802e0d2c8332;hpb=f7535e706ecbf4c28f21e52978db12b3ec9e1f54;p=patchwork diff --git a/apps/patchwork/tests/__init__.py b/apps/patchwork/tests/__init__.py index 5ec3923..d9ed346 100644 --- a/apps/patchwork/tests/__init__.py +++ b/apps/patchwork/tests/__init__.py @@ -17,17 +17,15 @@ # 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 * +from patchwork.tests.notifications import * +from patchwork.tests.list import *