[Zope3-checkins] CVS: Zope3/src/zope/app/translation_files - tests.py:1.1

Philipp von Weitershausen philikon at philikon.de
Wed Dec 17 09:07:36 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/translation_files
In directory cvs.zope.org:/tmp/cvs-serv8808/src/zope/app/translation_files

Added Files:
	tests.py 
Log Message:
Add tests module so the doctests are executed.


=== Added File Zope3/src/zope/app/translation_files/tests.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id: tests.py,v 1.1 2003/12/17 14:07:35 philikon Exp $
"""

import unittest
from zope.testing.doctestunit import DocTestSuite

def test_suite():
    return unittest.TestSuite((
        DocTestSuite('zope.app.translation_files.extract'),
        ))

if __name__ == '__main__':
    unittest.main()




More information about the Zope3-Checkins mailing list