[CMF-checkins] CVS: CMF/CMFCore/tests - test_PortalContent.py:1.1.2.1
Yvo Schubbe
schubbe@web.de
Fri, 20 Dec 2002 11:40:11 -0500
Update of /cvs-repository/CMF/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv21557/CMFCore/tests
Added Files:
Tag: yuppie-collector096-branch
test_PortalContent.py
Log Message:
more interface cleanups:
- added interface tests and made them pass
=== Added File CMF/CMFCore/tests/test_PortalContent.py ===
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')