» How to install zope.testrecorder with buildout
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.





