X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=apps%2Fpatchwork%2Ftests%2F__init__.py;h=e4bf42c27046cb8889ff2aaac90ba8046e2c14c8;hb=df1abefaaa678cedc4ce0293fd84bb4164c9852d;hp=5ec3923797233de4d5bc96e4fbb5802e0d2c8332;hpb=f7535e706ecbf4c28f21e52978db12b3ec9e1f54;p=patchwork diff --git a/apps/patchwork/tests/__init__.py b/apps/patchwork/tests/__init__.py index 5ec3923..e4bf42c 100644 --- a/apps/patchwork/tests/__init__.py +++ b/apps/patchwork/tests/__init__.py @@ -17,17 +17,16 @@ # 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 * +from patchwork.tests.person import *