[CMF-checkins] CVS: Products/CMFCore/tests -
test_PortalFolder.py:1.35.2.2
Yvo Schubbe
y.2004_ at wcm-solutions.de
Sun Sep 19 09:15:03 EDT 2004
Update of /cvs-repository/Products/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv4605/CMFCore/tests
Modified Files:
Tag: CMF-1_5-branch
test_PortalFolder.py
Log Message:
- removed docstrings from 'content*' methods
- added Folderish Interface
=== Products/CMFCore/tests/test_PortalFolder.py 1.35.2.1 => 1.35.2.2 ===
--- Products/CMFCore/tests/test_PortalFolder.py:1.35.2.1 Tue Aug 24 15:13:47 2004
+++ Products/CMFCore/tests/test_PortalFolder.py Sun Sep 19 09:14:32 2004
@@ -350,12 +350,15 @@
self.failIf(test.checkIdAvailable('foo'))
def test_interface(self):
+ from Products.CMFCore.interfaces.Folderish \
+ import Folderish as IFolderish
from Products.CMFCore.interfaces.Dynamic \
import DynamicType as IDynamicType
from OFS.IOrderSupport import IOrderedContainer
from webdav.WriteLockInterface import WriteLockInterface
from Products.CMFCore.PortalFolder import PortalFolder
+ verifyClass(IFolderish, PortalFolder)
verifyClass(IDynamicType, PortalFolder)
verifyClass(IOrderedContainer, PortalFolder)
verifyClass(WriteLockInterface, PortalFolder)
More information about the CMF-checkins
mailing list