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
parent
903ffd3906
commit
9f6908ffb0
|
@ -155,14 +155,6 @@ def compare_keys(k1, k2):
|
||||||
class GPGTestCase(unittest.TestCase):
|
class GPGTestCase(unittest.TestCase):
|
||||||
""":class:`unittest.TestCase <TestCase>`s for python-gnupg."""
|
""":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):
|
def setUp(self):
|
||||||
"""This method is called once per self.test_* method."""
|
"""This method is called once per self.test_* method."""
|
||||||
print("%s%s%s" % (os.linesep, str("=" * 70), os.linesep))
|
print("%s%s%s" % (os.linesep, str("=" * 70), os.linesep))
|
||||||
|
|
Loading…
Reference in New Issue