def setUp(self):
"""Patches the environment."""
- support.TempdirManager.setUp(self)
+ super(PyPIRCCommandTestCase, self).setUp()
if os.environ.has_key('HOME'):
self._old_home = os.environ['HOME']
else:
os.environ['HOME'] = self._old_home
set_threshold(self.old_threshold)
- support.TempdirManager.tearDown(self)
+ super(PyPIRCCommandTestCase, self).tearDown()
def test_server_registration(self):
# This test makes sure PyPIRCCommand knows how to:
class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase):
def setUp(self):
- support.LoggingSilencer.setUp(self)
# PyPIRCCommandTestCase creates a temp dir already
# and put it in self.tmp_dir
- PyPIRCCommandTestCase.setUp(self)
+ super(sdistTestCase, self).setUp()
# setting up an environment
self.old_path = os.getcwd()
os.mkdir(join(self.tmp_dir, 'somecode'))
def tearDown(self):
# back to normal
os.chdir(self.old_path)
- PyPIRCCommandTestCase.tearDown(self)
- support.LoggingSilencer.tearDown(self)
+ super(sdistTestCase, self).tearDown()
def get_cmd(self, metadata=None):
"""Returns a cmd"""