[CMF-checkins] CVS: CMF/CMFCore/tests - test_PortalContent.py:1.2
Yvo Schubbe
schubbe@web.de
Mon, 6 Jan 2003 16:05:50 -0500
Update of /cvs-repository/CMF/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv32050/CMFCore/tests
Added Files:
test_PortalContent.py
Log Message:
Merged yuppie-collector096-branch:
- Cleaned up Interfaces and API Help. (Collector #96)
- Removed deprecated 'register' module and interface.
=== CMF/CMFCore/tests/test_PortalContent.py 1.1 => 1.2 ===
--- /dev/null Mon Jan 6 16:05:50 2003
+++ CMF/CMFCore/tests/test_PortalContent.py Mon Jan 6 16:05:48 2003
@@ -0,0 +1,31 @@
+from unittest import TestCase, TestSuite, makeSuite, main
+
+import Zope
+try:
+ from Interface.Verify import verifyClass
+except ImportError:
+ # for Zope versions before 2.6.0
+ from Interface import verify_class_implementation as verifyClass
+
+from Products.CMFCore.PortalContent import PortalContent
+
+
+class PortalContentTests(TestCase):
+
+ def test_interface(self):
+ from Products.CMFCore.interfaces.Dynamic \
+ import DynamicType as IDynamicType
+ from Products.CMFCore.interfaces.Contentish \
+ import Contentish as IContentish
+
+ verifyClass(IDynamicType, PortalContent)
+ verifyClass(IContentish, PortalContent)
+
+
+def test_suite():
+ return TestSuite((
+ makeSuite( PortalContentTests ),
+ ))
+
+if __name__ == '__main__':
+ main(defaultTest='test_suite')