Skip to content

Commit

Permalink
Fixed #17768 -- Add a comment about an expected failure in generic_vi…
Browse files Browse the repository at this point in the history
…ews tests

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17700 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
claudep committed Mar 13, 2012
1 parent aa900c3 commit dd13596
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/regressiontests/generic_views/edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ def test_update_put(self):

res = self.client.put('/edit/author/%d/update/' % a.pk,
{'name': 'Randall Munroe (author of xkcd)', 'slug': 'randall-munroe'})
# Here is the expected failure. PUT data are not processed in any special
# way by django. So the request will equal to a POST without data, hence
# the form will be invalid and redisplayed with errors (status code 200).
# See also #12635
self.assertEqual(res.status_code, 302)
self.assertRedirects(res, 'http://testserver/list/authors/')
self.assertQuerysetEqual(Author.objects.all(), ['<Author: Randall Munroe (author of xkcd)>'])
Expand Down

0 comments on commit dd13596

Please sign in to comment.