(self)
| 9 | |
| 10 | class TestFolder(TestCase): |
| 11 | def setUp(self): |
| 12 | self.communicate_mock = mock.patch('keepercommander.api.communicate').start() |
| 13 | self.communicate_mock.side_effect = KeeperApiHelper.communicate_command |
| 14 | |
| 15 | def tearDown(self): |
| 16 | mock.patch.stopall() |