1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#
# Copyright (C) 2010 Wikkid Developers.
#
# This software is licensed under the GNU Affero General Public License
# version 3 (see the file LICENSE).
"""The wikkid tests for the wikkid.formatter package."""
import unittest
def test_suite():
names = [
'registry',
'rest',
'markdown',
'textile',
]
module_names = ['wikkid.tests.formatters.test_' + name for name in names]
loader = unittest.TestLoader()
suite = loader.loadTestsFromNames(module_names)
return suite
|