(self, *args, **kwargs)
| 822 | |
| 823 | |
| 824 | def run(self, *args, **kwargs): |
| 825 | with self.tmp_path() as tmp: |
| 826 | self.ham = ham = tmp / "ham.py" |
| 827 | ham.write_text( |
| 828 | textwrap.dedent( |
| 829 | """\ |
| 830 | raise KeyboardInterrupt |
| 831 | """ |
| 832 | ) |
| 833 | ) |
| 834 | super().run(*args, **kwargs) |
| 835 | |
| 836 | @requires_subprocess() |
| 837 | def assertSigInt(self, cmd, *args, **kwargs): |
no test coverage detected