Re: [Zope3-Users] Re: testing setup

2006-07-19 Thread Darryl Cousins
Hi Luis, You need to run functional tests using the zope testing environment which is set up for you when the tests are run with $instance/bin/test Functional tests are defined in python file ftests.py or package ftests/ which you will create in your package. For example: ftests.py:: import un

[Zope3-Users] Re: testing setup

2006-07-19 Thread luis
Hi all, thanks for the info... but I guess I'm still missing some configuration to be able to run the tests... I just created a file "t.py" in my home directory with the following contents: ### from zope.testbrowser.testing import Browser browser = Browser('http://localhost') ### just to see