[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/RoleService/Views/Browser/tests - testAdder.py:1.1.4.2 testContents.py:1.1.4.2
Jim Fulton
jim@zope.com
Fri, 7 Jun 2002 10:41:45 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/RoleService/Views/Browser/tests
In directory cvs.zope.org:/tmp/cvs-serv12187/lib/python/Zope/App/OFS/Services/RoleService/Views/Browser/tests
Modified Files:
Tag: Zope-3x-branch
testAdder.py testContents.py
Log Message:
Merging in Zope3InWonderland-branch, which implemented the following
proposals (see
http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/OldProposals):
- RenameAllowToRequire
- GroupClassRelatedDirectivesInClassDirective
- ViewInterfaceAndSimplification
- ConsistentUseOfSpacesAsDelimitersInZCMLAttributes
- TwoArgumentViewConstructors
- ImplementsInZCML
- SimpleViewCreationInZCML
- RemoveGetView
- ReplaceProtectWithAllow
- ViewMethodsAsViews
- MergeProtectionAndComponentDefinitions
There were also various security fixes resulting of better integration
of security with components.
=== Zope3/lib/python/Zope/App/OFS/Services/RoleService/Views/Browser/tests/testAdder.py 1.1.4.1 => 1.1.4.2 ===
def _TestView__newView(self, container):
from Zope.App.OFS.Services.RoleService.Views.Browser.Adder import Adder
- return Adder(container)
+ return Adder(container, None)
def testAdding(self):
=== Zope3/lib/python/Zope/App/OFS/Services/RoleService/Views/Browser/tests/testContents.py 1.1.4.1 => 1.1.4.2 ===
def _TestView__newView(self, container):
- return Contents(container)
+ return Contents(container, None)
def test_suite():
loader = unittest.TestLoader()