On 7/10/07, Mambaragi <[EMAIL PROTECTED]> wrote: > As you see, I view function raises an exception, the exception is > always regarded as "TemplateDoesNotExist". > So I have to change the test case to... > > ] client = Client() > ] self.assertRaises(TemplateDoesNotExist, client.get, "/user/ > preferences/") > > Is is a bug or my mistake??
If you actually try it for real and look at the traceback, you'll see a message in there saying something like "You need a 500.html" -- when DEBUG is disabled, Django will render server errors using the template "500.html" (though this is configurable) and, if that template isn't available, will end up raising TemplateDoesNotExist, which obscures the "real" error. The solution is to create a template named "500.html" which Django will be able to use on an internal error. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---