summaryrefslogtreecommitdiff
path: root/tests/test_support.py
diff options
context:
space:
mode:
authorAlex Morega <alex@grep.ro>2013-07-06 14:31:11 +0200
committerAlex Morega <alex@grep.ro>2013-07-06 14:54:58 +0200
commitabb96be40053f9c811f27c0f0dd365224b5c1d00 (patch)
tree3a570f4a373dc18dccd20df5f14c25f95c661df0 /tests/test_support.py
parent043f2976f9f6514ab1eefae9360c213bf7703a60 (diff)
downloadbabel-abb96be40053f9c811f27c0f0dd365224b5c1d00.tar.gz
remove test suite factories
Diffstat (limited to 'tests/test_support.py')
-rw-r--r--tests/test_support.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/test_support.py b/tests/test_support.py
index a3d0171..e165434 100644
--- a/tests/test_support.py
+++ b/tests/test_support.py
@@ -299,14 +299,3 @@ def test_lazy_proxy():
u"Hello, universe!",
u"Hello, world!",
]
-
-
-def suite():
- suite = unittest.TestSuite()
- suite.addTest(unittest.makeSuite(TranslationsTestCase, 'test'))
- suite.addTest(unittest.makeSuite(NullTranslationsTestCase, 'test'))
- suite.addTest(unittest.makeSuite(LazyProxyTestCase, 'test'))
- return suite
-
-if __name__ == '__main__':
- unittest.main(defaultTest='suite')