Skip to content

Commit

Permalink
Fixed #15828 -- Removed explicit implementation of empty setUp / tear…
Browse files Browse the repository at this point in the history
…Down methods. Backport of http://hg.python.org/unittest2/rev/3d33f92496fa.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17398 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
aaugustin committed Jan 27, 2012
1 parent ef92619 commit 1d54e3a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions django/utils/unittest/case.py
Expand Up @@ -241,9 +241,6 @@ def addCleanup(self, function, *args, **kwargs):
Cleanup items are called even if setUp fails (unlike tearDown)."""
self._cleanups.append((function, args, kwargs))

def setUp(self):
"Hook method for setting up the test fixture before exercising it."

@classmethod
def setUpClass(cls):
"Hook method for setting up class fixture before running tests in the class."
Expand All @@ -252,9 +249,6 @@ def setUpClass(cls):
def tearDownClass(cls):
"Hook method for deconstructing the class fixture after running all tests in the class."

def tearDown(self):
"Hook method for deconstructing the test fixture after testing it."

def countTestCases(self):
return 1

Expand Down

0 comments on commit 1d54e3a

Please sign in to comment.