Edgewall Software

source: trunk/genshi/tests/__init__.py

Last change on this file was 538, checked in by cmlenz, 16 years ago

Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.

  • Property svn:eol-style set to native
File size: 1.1 KB
RevLine 
[2]1# -*- coding: utf-8 -*-
2#
[71]3# Copyright (C) 2006 Edgewall Software
[2]4# All rights reserved.
5#
6# This software is licensed as described in the file COPYING, which
7# you should have received as part of this distribution. The terms
[287]8# are also available at http://genshi.edgewall.org/wiki/License.
[2]9#
10# This software consists of voluntary contributions made by many
11# individuals. For the exact contribution history, see the revision
[287]12# history and logs, available at http://genshi.edgewall.org/log/.
[2]13
14import unittest
15
16def suite():
[287]17    import genshi
[538]18    from genshi.tests import builder, core, input, output, path, util
19    from genshi.filters import tests as filters
[414]20    from genshi.template import tests as template
21
[2]22    suite = unittest.TestSuite()
23    suite.addTest(builder.suite())
24    suite.addTest(core.suite())
[134]25    suite.addTest(filters.suite())
[2]26    suite.addTest(input.suite())
27    suite.addTest(output.suite())
28    suite.addTest(path.suite())
29    suite.addTest(template.suite())
[339]30    suite.addTest(util.suite())
[2]31    return suite
32
33if __name__ == '__main__':
34    unittest.main(defaultTest='suite')
Note: See TracBrowser for help on using the repository browser.