cmlenz@3: # -*- coding: utf-8 -*- cmlenz@3: # jruigrok@532: # Copyright (C) 2007-2011 Edgewall Software cmlenz@3: # All rights reserved. cmlenz@3: # cmlenz@3: # This software is licensed as described in the file COPYING, which cmlenz@3: # you should have received as part of this distribution. The terms cmlenz@3: # are also available at http://babel.edgewall.org/wiki/License. cmlenz@3: # cmlenz@3: # This software consists of voluntary contributions made by many cmlenz@3: # individuals. For the exact contribution history, see the revision cmlenz@3: # history and logs, available at http://babel.edgewall.org/log/. cmlenz@3: cmlenz@3: import doctest cmlenz@3: import unittest cmlenz@3: cmlenz@3: from babel import util cmlenz@3: cmlenz@3: def suite(): cmlenz@3: suite = unittest.TestSuite() cmlenz@3: suite.addTest(doctest.DocTestSuite(util)) cmlenz@3: return suite cmlenz@3: cmlenz@3: if __name__ == '__main__': cmlenz@3: unittest.main(defaultTest='suite')