[ZDP] BackTalk to Document Zope Developer's Guide (2.4 edition)/Testing and Debugging
webmaster@zope.org
webmaster@zope.org
Wed, 08 Jan 2003 23:50:35 -0500
A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZDG/current/TestingAndDebugging.stx#1-0
---------------
As you develop Zope applications you will run into problems. This
chapter covers debugging and testing techniques that can help
you. The Zope debugger allow you to peek inside a running process
and find exactly what is going wrong. Unit testing allows you to
automate the testing process to ensure that your code still works
correctly as you change it. Finally, Zope provides logging
facilities which allow you to emit warnings and error messages.
% Anonymous User - Jan. 24, 2002 7:01 am - (This comment does not really fit here but I think it is important) Use the source! If you want to know how a function in Zope doesn't do what it should try to find it: "cd $ZOPE_HOME/lib/python; grep -irs "def foo" * Windows Users: grep is included in cygwin (http://www.cygwin.com/)
% Anonymous User - Jan. 8, 2003 11:50 pm:
rwar