Re: Testing django code

2008-11-21 Thread Antoni Aloy
2008/11/21 Malcolm Tredinnick <[EMAIL PROTECTED]>: > > > I'd encourage you to follow my hint from the other day on django-users: > look at tests/regressiontests/middleware/tests.py and add a similar sort > of class to tests/regressiontests/cache/tests.py (the latter is where > the caching tests

Re: Testing django code

2008-11-21 Thread Malcolm Tredinnick
On Fri, 2008-11-21 at 10:29 +0100, Antoni Aloy wrote: > Hi! > > I'm working on ticket #5691 http://code.djangoproject.com/ticket/5691, > I have patched the original Django code and now I'm trying to write > the tests. > > For testing purposes I have created a minimum applications and using >

Testing django code

2008-11-21 Thread Antoni Aloy
Hi! I'm working on ticket #5691 http://code.djangoproject.com/ticket/5691, I have patched the original Django code and now I'm trying to write the tests. For testing purposes I have created a minimum applications and using Client to start checking, but I have found some problems: *