Remove unused unittest.TestCase.setUpClass() method.

* REMOVE boilerplated unittest.TestCase.setUpClass() method, as it did
   nothing and was not being called anywhere.
fix/24-enc-to-file
Isis Lovecruft 2013-10-08 08:50:08 +00:00
parent 903ffd3906
commit 9f6908ffb0
No known key found for this signature in database
GPG Key ID: 5C17776E27F7E84D
1 changed files with 0 additions and 8 deletions

View File

@ -155,14 +155,6 @@ def compare_keys(k1, k2):
class GPGTestCase(unittest.TestCase):
""":class:`unittest.TestCase <TestCase>`s for python-gnupg."""
@classmethod
def setUpClass(cls):
"""Setup ``GPGTestCase`` and runtime environment for tests.
This function must be called manually.
"""
pass
def setUp(self):
"""This method is called once per self.test_* method."""
print("%s%s%s" % (os.linesep, str("=" * 70), os.linesep))