Re: Pre-empting Fixture execution in Django with nosetests.

2008-10-01 Thread Kumar McMillan
On Tue, Sep 23, 2008 at 3:07 AM, proteus guy <[EMAIL PROTECTED]> wrote: > Here's a fun one for you testing gurus! I have a Django app that uses an > irc server to communicate events to a system. My models utilize the django > model save signal to post an irc message when something is updated.

Re: Pre-empting Fixture execution in Django with nosetests.

2008-09-24 Thread Russell Keith-Magee
On Wed, Sep 24, 2008 at 4:39 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Russ, > > Well, as you can tell from my initial post, this was my initial > concept. However, you seem to be proposing to launch nosetests from > the 'manage.py test' execution rather than directly from the command >

Re: Pre-empting Fixture execution in Django with nosetests.

2008-09-24 Thread [EMAIL PROTECTED]
Russ, Well, as you can tell from my initial post, this was my initial concept. However, you seem to be proposing to launch nosetests from the 'manage.py test' execution rather than directly from the command line. Am I reading you right? Hadn't considered that option. Not sure how much effort it w

Re: Pre-empting Fixture execution in Django with nosetests.

2008-09-23 Thread Russell Keith-Magee
On Tue, Sep 23, 2008 at 4:07 PM, proteus guy <[EMAIL PROTECTED]> wrote: > Here's a fun one for you testing gurus! I have a Django app that uses an > irc server to communicate events to a system. My models utilize the django > model save signal to post an irc message when something is updated.

Pre-empting Fixture execution in Django with nosetests.

2008-09-23 Thread proteus guy
Here's a fun one for you testing gurus! I have a Django app that uses an irc server to communicate events to a system. My models utilize the django model save signal to post an irc message when something is updated. For unit testing I've been able to monkey-patch the IRC connection object no pr