Re: Temporary urls for tests

2009-05-31 Thread Filip Gruszczyński
That's handy. Thanks. W dniu 31 maja 2009 10:23 użytkownik V napisał: > > another possibility is to call the views from your test directly, a > relevant snippet to construct a request objects is > http://www.djangosnippets.org/snippets/963/ > > V > > On May 30, 3:43 pm,

Re: Temporary urls for tests

2009-05-31 Thread V
another possibility is to call the views from your test directly, a relevant snippet to construct a request objects is http://www.djangosnippets.org/snippets/963/ V On May 30, 3:43 pm, Ramiro Morales wrote: > 2009/5/30 Filip Gruszczyński : > > > > > I am

Re: Temporary urls for tests

2009-05-30 Thread Filip Gruszczyński
Should have check those docs, sorry. Next time I'll make sure I've checked it all. Thanks for you help. W dniu 30 maja 2009 15:43 użytkownik Ramiro Morales napisał: > > 2009/5/30 Filip Gruszczyński : >> >> I am building a library for Django that provides

Re: Temporary urls for tests

2009-05-30 Thread Ramiro Morales
2009/5/30 Filip Gruszczyński : > > I am building a library for Django that provides some abstract views > (I am using classes instead of functions), that can be used subclassed > and used in any app. I would like to be able to test those views, so I > subclass them during

Temporary urls for tests

2009-05-30 Thread Filip Gruszczyński
I am building a library for Django that provides some abstract views (I am using classes instead of functions), that can be used subclassed and used in any app. I would like to be able to test those views, so I subclass them during testing and would like to be able to attach them to some url, so