[Zope3-checkins] CVS: Zope3/src/zope/app/tentative - tests.py:1.1.2.1

Nathan Yergler nathan at yergler.net
Tue Apr 6 12:17:59 EDT 2004


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

Added Files:
      Tag: tentative-branch
	tests.py 
Log Message:


Added test driver for loading doctests.


=== Added File Zope3/src/zope/app/tentative/tests.py ===
##############################################################################
#
# Copyright (c) 2004 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.
#
##############################################################################
"""Tentative and Confirmed event tests.

$Id: tests.py,v 1.1.2.1 2004/04/06 16:17:58 nathan Exp $
"""

import doctest
import unittest

def test_suite():
    import sys
    return unittest.TestSuite((
        doctest.DocTestSuite('zope.app.tentative.event'),
        ))

if __name__ == '__main__':
    test_suite()
    





More information about the Zope3-Checkins mailing list