(self)
| 4761 | os_helper.unlink(os_helper.TESTFN) |
| 4762 | |
| 4763 | def test_checkline_before_debugging(self): |
| 4764 | with open(os_helper.TESTFN, "w") as f: |
| 4765 | f.write("print(123)") |
| 4766 | db = pdb.Pdb() |
| 4767 | self.assertEqual(db.checkline(os_helper.TESTFN, 1), 1) |
| 4768 | |
| 4769 | def test_checkline_after_reset(self): |
| 4770 | with open(os_helper.TESTFN, "w") as f: |
nothing calls this directly
no test coverage detected