(self, *args, **kwargs)
| 780 | |
| 781 | |
| 782 | def run(self, *args, **kwargs): |
| 783 | with self.tmp_path() as tmp: |
| 784 | self.ham = ham = tmp / "ham.py" |
| 785 | ham.write_text( |
| 786 | textwrap.dedent( |
| 787 | """\ |
| 788 | raise KeyboardInterrupt |
| 789 | """ |
| 790 | ) |
| 791 | ) |
| 792 | super().run(*args, **kwargs) |
| 793 | |
| 794 | @requires_subprocess() |
| 795 | def assertSigInt(self, cmd, *args, **kwargs): |
no test coverage detected