mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
assert_ -> assertTrue assertEquals -> assertEqual failUnless -> assertTrue For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b7c41c1fbb
commit
afd040d4d3
110 changed files with 1197 additions and 1197 deletions
|
|
@ -166,7 +166,7 @@ class SimpleTemplateResponseTest(BaseTemplateResponseTest):
|
|||
# When the content is rendered, all the callbacks are invoked, too.
|
||||
response.render()
|
||||
self.assertEqual('First template\n', response.content)
|
||||
self.assertEquals(post, ['post1','post2'])
|
||||
self.assertEqual(post, ['post1','post2'])
|
||||
|
||||
|
||||
def test_pickling(self):
|
||||
|
|
@ -184,9 +184,9 @@ class SimpleTemplateResponseTest(BaseTemplateResponseTest):
|
|||
pickled_response = pickle.dumps(response)
|
||||
unpickled_response = pickle.loads(pickled_response)
|
||||
|
||||
self.assertEquals(unpickled_response.content, response.content)
|
||||
self.assertEquals(unpickled_response['content-type'], response['content-type'])
|
||||
self.assertEquals(unpickled_response.status_code, response.status_code)
|
||||
self.assertEqual(unpickled_response.content, response.content)
|
||||
self.assertEqual(unpickled_response['content-type'], response['content-type'])
|
||||
self.assertEqual(unpickled_response.status_code, response.status_code)
|
||||
|
||||
# ...and the unpickled reponse doesn't have the
|
||||
# template-related attributes, so it can't be re-rendered
|
||||
|
|
@ -249,9 +249,9 @@ class TemplateResponseTest(BaseTemplateResponseTest):
|
|||
pickled_response = pickle.dumps(response)
|
||||
unpickled_response = pickle.loads(pickled_response)
|
||||
|
||||
self.assertEquals(unpickled_response.content, response.content)
|
||||
self.assertEquals(unpickled_response['content-type'], response['content-type'])
|
||||
self.assertEquals(unpickled_response.status_code, response.status_code)
|
||||
self.assertEqual(unpickled_response.content, response.content)
|
||||
self.assertEqual(unpickled_response['content-type'], response['content-type'])
|
||||
self.assertEqual(unpickled_response.status_code, response.status_code)
|
||||
|
||||
# ...and the unpickled reponse doesn't have the
|
||||
# template-related attributes, so it can't be re-rendered
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue