[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/tests - testAdder.py:1.1.2.1

Gary Poster garyposter@earthlink.net
Thu, 20 Jun 2002 12:12:04 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/tests
In directory cvs.zope.org:/tmp/cvs-serv20109/Container/Views/Browser/tests

Added Files:
      Tag: gary-zope3_add_menu-branch
	testAdder.py 
Log Message:
small fixes, the skeleton for testAdder



=== Added File Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/tests/testAdder.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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.
# 
##############################################################################
"""test Adding

test Adding for interface compliance

$Id: testAdder.py,v 1.1.2.1 2002/06/20 16:12:03 poster Exp $
"""

from unittest import TestCase, TestSuite, main, makeSuite
from Zope.App.OFS.Services.ServiceManager.tests.PlacefulSetup import \
     PlacefulSetup
from Zope.App.OFS.Container.Views.Browser.Adding import Adding
from Zope.ComponentArchitecture.tests.Request import Request

class Test(PlacefulSetup, TestCase):
    def testAdd(self):
        ""

def test_suite():
    return TestSuite((
        makeSuite(Test),
        ))

if __name__=='__main__':
    main(defaultTest='test_suite')