Re: question about TestCase._pre_setup database flush condition

2007-11-23 Thread Atsushi Suga
Thanks for teaching me and your work. Yours Atsushi Suga --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To

Re: question about TestCase._pre_setup database flush condition

2007-11-23 Thread Russell Keith-Magee
On 11/23/07, Atsushi Suga <[EMAIL PROTECTED]> wrote: > > I have a question abut database flush condition. > in django/test/testcases.py TestCase._pre_setup() > > forrow is _pre_setup() comment > """ > ... > If the Test Case class has a 'fixtures' member, clearing the > database and installing the

question about TestCase._pre_setup database flush condition

2007-11-22 Thread Atsushi Suga
I have a question abut database flush condition. in django/test/testcases.py TestCase._pre_setup() forrow is _pre_setup() comment """ ... If the Test Case class has a 'fixtures' member, clearing the database and installing the named fixtures at the start of each test. ... """ Comment of this