Hi,
zope.testrecorder is a tool to record navigation browser for doctest. In this post I explain how install it with buildout.
In your buildout.cfg :
[buildout] parts = zope2 fakezope2eggs ... eggs = ... zope.testrecorder [fakezope2eggs] recipe = z3c.recipe.fakezope2eggs additional-fake-eggs = ZODB3 [instance] ... eggs = ... zope.testrecorder zcml = ... zope.testrecorder
Relaunch buildout and restart instance and now go to
http://<zope host>:<zope port>/++resource++recorder/index.html
You are ready to record you’re doctest.
July 24, 2008 at 11:26 pm
nice hint. i forgot about fakezope2eggs for a while. the plone.recipe.zope2install now includes the same functionality as fakezope2eggs.
i’m adding this to my setup as we speak!