(self)
| 997 | |
| 998 | @contextlib.contextmanager |
| 999 | def temporary_directory(self): |
| 1000 | with tempfile.TemporaryDirectory() as path: |
| 1001 | self.path = path |
| 1002 | yield path |
| 1003 | self.path = None |
| 1004 | |
| 1005 | def make_script(self, code, name="script"): |
| 1006 | return script_helper.make_script(self.path, name, code) |
no outgoing calls
no test coverage detected