Stefan H. Holek wrote:
I see two options:

a) Use a different portal name

    portal_name = 'mysite'
    CMFTestCase.setupCMFSite(portal_name)

Can setupCMFSite not do something more clever if it finds the object already there?

b) Use getPortal() to create a new portal per test

    def getPortal(self):
        manage_addCMFSite(self.app, portal_name)
        return getattr(self.app, portal_name)

....hahaha, and watch your tests take hours to run ;-)

Chris

--
Simplistix - Content Management, Zope & Python Consulting
           - http://www.simplistix.co.uk

_______________________________________________
Zope-CMF maillist  -  Zope-CMF@lists.zope.org
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests

Reply via email to