Hi (yet) again ;-)

class MyLayer:

  @classmethod
  def setUp(self):
    self.app = Testing.ZopeTestCase.Zope2.app()

  @classmethod
  def tearDown(self):
    Testing.ZopeTestCase.close()

class MyTests(TestCase):

  def setUp(self):
    self.savepoint = transaction.savepoint()
    self.app = makerequest(?.app)

  def tearDown(self):
    self.savepoint.rollback()

  ...

What do I put in place of the ? to get hold of the layer's app?

cheers,

Chris

--
Simplistix - Content Management, Zope & Python Consulting
           - http://www.simplistix.co.uk
_______________________________________________
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com

Reply via email to