(self)
| 207 | self.run_tmpfile_p() |
| 208 | |
| 209 | def test_run_debug_twice(self): |
| 210 | # https://github.com/ipython/ipython/issues/10028 |
| 211 | _ip = get_ipython() |
| 212 | with tt.fake_input(['c']): |
| 213 | _ip.magic('run -d %s' % self.fname) |
| 214 | with tt.fake_input(['c']): |
| 215 | _ip.magic('run -d %s' % self.fname) |
| 216 | |
| 217 | def test_run_debug_twice_with_breakpoint(self): |
| 218 | """Make a valid python temp file.""" |
nothing calls this directly
no test coverage detected