comparison 0.8.x/babel/messages/tests/__init__.py @ 142:4a7af44e6695 stable

Create branch for 0.8.x releases.
author cmlenz
date Wed, 20 Jun 2007 10:09:07 +0000
parents
children
comparison
equal deleted inserted replaced
1:bf36ec5f5e50 142:4a7af44e6695
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2007 Edgewall Software
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
8 # are also available at http://babel.edgewall.org/wiki/License.
9 #
10 # This software consists of voluntary contributions made by many
11 # individuals. For the exact contribution history, see the revision
12 # history and logs, available at http://babel.edgewall.org/log/.
13
14 import unittest
15
16 def suite():
17 from babel.messages.tests import catalog, extract, frontend, pofile
18 suite = unittest.TestSuite()
19 suite.addTest(catalog.suite())
20 suite.addTest(extract.suite())
21 suite.addTest(frontend.suite())
22 suite.addTest(pofile.suite())
23 return suite
24
25 if __name__ == '__main__':
26 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software