On Thu, Mar 27, 2008 at 10:49 AM, Karantir <[EMAIL PROTECTED]> wrote: > > And here is a bit of my testcase > [code] > > self.assertRaises(RevisionNotStarted, > self.documents[0].fix_revision()) > [/code]
Try removing the extra parentheses from your test case. assertRaises expects to get a callable, which it can call within its own try/catch block. You're instead calling the fix_revision() method before assertRaises even has a chance to see the function. There's no way it could catch the error in this case, so the error you reported is natural. [code] self.assertRaises(RevisionNotStarted, self.documents[0].fix_revision) [/code] -Gul --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---