Re: unit testing Q

2008-03-25 Thread Russell Keith-Magee
On Tue, Mar 25, 2008 at 11:44 PM, Jeff Gentry <[EMAIL PROTECTED]> wrote: > > Hi there ... > > As a relative newcomer to Django, I recently starting looking at how best > to implement unit tests for my app. I came across this page: > http://www.djangoproject.com/documentation/testing/ > as

Re: unit testing Q

2008-03-25 Thread Joseph Heck
Absolutely - the "making a seperate DB" is all wrapped in "django-admin.py test" or "./manage.py test" - which does a number of things for you. You don't have to use that at all - and just running standard python unit tests will work against your system. You'll need to set up your environment to

unit testing Q

2008-03-25 Thread Jeff Gentry
Hi there ... As a relative newcomer to Django, I recently starting looking at how best to implement unit tests for my app. I came across this page: http://www.djangoproject.com/documentation/testing/ as well as a couple of other examples online. If I'm understanding things correctly, the unit