Searched refs:execute_command_async (Results 1 – 3 of 3) sorted by relevance
24 self.ermine_ctl.execute_command_async = mock.MagicMock()28 self.ermine_ctl.execute_command_async.return_value = mock_proc222 self.assertEqual(self.ermine_ctl.execute_command_async.call_count,224 self.ermine_ctl.execute_command_async.assert_has_calls([
54 def execute_command_async(self, args: List[str]) -> subprocess.Popen: member in BaseErmineCtl128 return self.execute_command_async(full_command)
21 def execute_command_async(self, args: List[str]) -> subprocess.Popen: member in ErmineCtl