[Zope3-checkins] CVS: Zope3/src/zope/app/tests -
test_copypastemove.py:1.1
Jim Fulton
jim at zope.com
Sun Sep 21 13:33:35 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv15441/src/zope/app/tests
Added Files:
test_copypastemove.py
Log Message:
Added new tests for the object mover and copier.
=== Added File Zope3/src/zope/app/tests/test_copypastemove.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.
#
##############################################################################
"""XXX short summary goes here.
$Id: test_copypastemove.py,v 1.1 2003/09/21 17:33:34 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
from zope.app.tests.placelesssetup import setUp, tearDown
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.copypastemove',
setUp=setUp, tearDown=tearDown),
))
if __name__ == '__main__': unittest.main()
More information about the Zope3-Checkins
mailing list