Test that do_help sends the help message.
(self)
| 912 | self.assertEqual(cmd, "help") |
| 913 | |
| 914 | def test_do_help(self): |
| 915 | """Test that do_help sends the help message.""" |
| 916 | self.pdb.do_help("break") |
| 917 | |
| 918 | outputs = self.sockfile.get_output() |
| 919 | self.assertEqual(len(outputs), 1) |
| 920 | self.assertEqual(outputs[0], {"help": "break"}) |
| 921 | |
| 922 | def test_interact_mode(self): |
| 923 | """Test interaction mode setup and execution.""" |
nothing calls this directly
no test coverage detected