(self)
| 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: |
| 4771 | f.write("print(123)") |
| 4772 | db = pdb.Pdb() |
| 4773 | db.reset() |
| 4774 | self.assertEqual(db.checkline(os_helper.TESTFN, 1), 1) |
| 4775 | |
| 4776 | def test_checkline_is_not_executable(self): |
| 4777 | # Test for comments, docstrings and empty lines |
nothing calls this directly
no test coverage detected