On Mar 2, 12:34 pm, raj <rajeeshrn...@gmail.com> wrote:
> Hi all,
>
> Since my model admin.change_view raises an exception, I'm expecting
> the response_code to be 500 on requesting for the url, '/admin/myApp/
> myModel/1/'. This happens to be so when accessed through browser. But
> my unit test says it's still 200. Can some body point What obvious
> thing am I missing?
>
> class MyModelTestCase(TestCase):
>     response = self.client.get('/admin/myApp/myModel/1/')
>     self.assertEquals(response.status_code, 200)
>
> class MyModelAdmin(admin.ModelAdmin):
>     def change_view(self, request, object_id, extra_context=None):
>          raise ValueError, 'testing'
>          super(MyModelAdmin, self).change_view(self, request,
> object_id, extra_context)
>
> Rajeesh.

Doing "print response.content" before the assertion should show what's
going on. My suspicion is that it's not even getting to the model
admin because it's displaying a login page, which would be a 200. Get
a user and log them in manually first.
--
DR.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to