Example #1
0
 def tearDownClass(cls):
     patch.stopall()
Example #2
0
 def tearDown(self):
     super(TestServersLoad, self).tearDown()
     patch.stopall()
Example #3
0
 def tearDown(self):
     patch.stopall()
     logging.disable(logging.NOTSET)
Example #4
0
 def tearDown(self):
     patch.stopall()
     super(ClusterTest, self).tearDown()
Example #5
0
 def tearDown(self):
     del self.mock_get_cur
     patch.stopall()
 def tearDown(self):
     patch.stopall()
     super(HostTest, self).tearDown()
 def tearDown(self):
     """Destroy all instances and mocks."""
     self.api = None
     self.switch = None
     patch.stopall()
     self.patches = None
Example #8
0
 def tearDown(self):
     super(TestLinux, self).tearDown()
     patch.stopall()
 def tearDown(self):
     patch.stopall()
     super(TestDNSInterface, self).tearDown()
Example #10
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     SocketServer.DatagramRequestHandler = self.real_drh
     pyzor.server.RequestHandler.__bases__ = (self.real_drh, )
     patch.stopall()
Example #11
0
 def tearDown(self):
     # ensure all patches (if any are stopped once done)
     patch.stopall()
Example #12
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     pad.rules.header._MultiplePatternHeaderRule._headers = None
     patch.stopall()
Example #13
0
 def tearDown(self):
     patch.stopall()
     super(TestRevokeReport, self).tearDown()
Example #14
0
 async def tearDown(self):
     patch.stopall()
     for file_path in self.files_to_remove:
         if os.path.exists(file_path):
             os.unlink(file_path)
Example #15
0
 def tearDown(self):
     super().tearDown()
     patch.stopall()
Example #16
0
 def tearDown(self):
     del type(self.mock_get_cur.return_value).rowcount
     del self.mock_get_cur
     patch.stopall()
Example #17
0
 def stop_patches():
     patch.stopall()
Example #18
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     patch.stopall()
Example #19
0
 def tearDown(self):
     patch.stopall()
     self.bounty_payer_profile.delete()
     self.bounty_earner_profile.delete()
     self.tip_username_profile.delete()
     self.tip_from_username_profile.delete()
Example #20
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     patch.stopall()
 def tearDown(self):
     """
     Undo all patches.
     """
     patch.stopall()
Example #22
0
 def tearDown(self):
     """
     Undo all patches and reset the cwd
     """
     patch.stopall()
     os.chdir(self._old_cwd)
Example #23
0
def silence_x_ray():
    x_ray_patch_all = 'algernon.aws.lambda_logging.patch_all'
    patch(x_ray_patch_all).start()
    yield
    patch.stopall()
Example #24
0
 async def tearDown(self):
     await super(AuthenticationTest, self).tearDown()
     patch.stopall()
Example #25
0
 def tearDownClass(cls):
     del os.environ['EFB_DATA_PATH']
     cls.temp_dir.cleanup()
     patch.stopall()
 def tearDownClass(cls) -> None:
     patch.stopall()
Example #27
0
 def tearDown(self):
     patch.stopall()
     self.drop_db()
Example #28
0
 def tearDown(self):
     super(TestAccessLoad, self).tearDown()
     patch.stopall()
Example #29
0
 def tearDown(self):
     super(TestYabai, self).tearDown()
     patch.stopall()
Example #30
0
 def tearDown(self):
     super(TestPasswdLoad, self).tearDown()
     patch.stopall()
Example #31
0
 def tearDown(self):
     shutil.rmtree(self.toxworkdir)
     patch.stopall()
Example #32
0
 async def tearDown(self):
     patch.stopall()
     self.temp_file.close()
Example #33
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     pad.protocol.base.BaseProtocol.has_message = False
     pad.protocol.base.BaseProtocol.has_options = False
     patch.stopall()
Example #34
0
 def tearDown(self):
     patch.stopall()
Example #35
0
 def tearDown(self):
     patch.stopall()
     super(HostTest, self).tearDown()
Example #36
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     oa.rules.header._MultiplePatternHeaderRule._headers = None
     patch.stopall()
Example #37
0
 def tearDown(self):
     self.read_pipe.close()
     self.write_pipe.close()
     patch.stopall()
Example #38
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     pad.protocol.base.BaseProtocol.has_message = False
     pad.protocol.base.BaseProtocol.has_options = False
     patch.stopall()
Example #39
0
 def tearDown(self):
     patch.stopall()
     super(TestRevokeReport, self).tearDown()
Example #40
0
 def tearDown(self):
     patch.stopall()
 def tearDownClass(cls):
     super().tearDownClass()
     logging.disable(logging.NOTSET)
     patch.stopall()
     UploadedFile.objects.all().delete()
     UploadSession.objects.all().delete()
Example #42
0
 def tearDown(self):
     unittest.TestCase.tearDown(self)
     SocketServer.DatagramRequestHandler = self.real_drh
     pyzor.server.RequestHandler.__bases__ = (self.real_drh,)
     patch.stopall()
Example #43
0
 def tearDown(self):
     patch.stopall()
     super(TestDNSInterface, self).tearDown()