[Zope-Checkins] CVS: Zope3 - ut.py:1.1.2.1

Jim Fulton jim@zope.com
Fri, 8 Feb 2002 15:07:49 -0500


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv30267

Added Files:
      Tag: Zope-3x-branch
	ut.py 
Log Message:
added py source and unit test templates

=== Added File Zope3/ut.py ===
##############################################################################
#
# Copyright (c) 2001 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
# 
##############################################################################

import unittest, sys

class Test(unittest.TestCase):


def test_suite():
    loader=unittest.TestLoader()
    return loader.loadTestsFromTestCase(Test)

if __name__=='__main__':
    unittest.TextTestRunner().run(test_suite())