Test reading EOF command.
(self)
| 875 | self.assertEqual(cmd, "help") |
| 876 | |
| 877 | def test_read_command_EOF(self): |
| 878 | """Test reading EOF command.""" |
| 879 | # Simulate socket closure |
| 880 | self.pdb._write_failed = True |
| 881 | with self.assertRaises(EOFError): |
| 882 | self.pdb._read_reply() |
| 883 | |
| 884 | def test_completion(self): |
| 885 | """Test handling completion requests.""" |
nothing calls this directly
no test coverage detected