comparison babel/messages/tests/frontend.py @ 54:7dbcbc3f07e0 trunk

Rename the `babel.catalog` package to `babel.messages` for consistency with the other package names.
author cmlenz
date Fri, 08 Jun 2007 09:16:32 +0000
parents babel/catalog/tests/frontend.py@e6ba3e878b10
children e24ef6a84351
comparison
equal deleted inserted replaced
53:e4711b804df7 54:7dbcbc3f07e0
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 doctest
15 import unittest
16
17 from babel.messages import frontend
18
19 def suite():
20 suite = unittest.TestSuite()
21 suite.addTest(doctest.DocTestSuite(frontend))
22 return suite
23
24 if __name__ == '__main__':
25 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software