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
|
|
@ -56,9 +56,9 @@ class DecoratorsTest(TestCase):
|
|||
Tests that django decorators set certain attributes of the wrapped
|
||||
function.
|
||||
"""
|
||||
self.assertEquals(fully_decorated.__name__, 'fully_decorated')
|
||||
self.assertEquals(fully_decorated.__doc__, 'Expected __doc__')
|
||||
self.assertEquals(fully_decorated.__dict__['anything'], 'Expected __dict__')
|
||||
self.assertEqual(fully_decorated.__name__, 'fully_decorated')
|
||||
self.assertEqual(fully_decorated.__doc__, 'Expected __doc__')
|
||||
self.assertEqual(fully_decorated.__dict__['anything'], 'Expected __dict__')
|
||||
|
||||
def test_user_passes_test_composition(self):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue