(self, json_content)
| 159 | shutil.rmtree(TEST_WORKSPACE) |
| 160 | |
| 161 | def _WriteTestInput(self, json_content): |
| 162 | self._test_input = os.path.join(TEST_WORKSPACE, 'test.json') |
| 163 | with open(self._test_input, 'w') as f: |
| 164 | f.write(json.dumps(json_content)) |
| 165 | |
| 166 | def _MockCommand(self, raw_dirs, raw_outputs, *args, **kwargs): |
| 167 | on_bots = kwargs.pop('on_bots', False) |
no test coverage detected