[CMF-checkins] CVS: Products/CMFCore/tests - test_PortalFolder.py:1.37

Yvo Schubbe y.2004_ at wcm-solutions.de
Sun Sep 19 09:15:54 EDT 2004


Update of /cvs-repository/Products/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv4948/CMFCore/tests

Modified Files:
	test_PortalFolder.py 
Log Message:
- removed docstrings from 'content*' methods
- added Folderish Interface


=== Products/CMFCore/tests/test_PortalFolder.py 1.36 => 1.37 ===
--- Products/CMFCore/tests/test_PortalFolder.py:1.36	Tue Aug 24 15:16:32 2004
+++ Products/CMFCore/tests/test_PortalFolder.py	Sun Sep 19 09:15:24 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