Test handling the command_list message.
(self)
| 234 | ) |
| 235 | |
| 236 | def test_handling_command_list(self): |
| 237 | """Test handling the command_list message.""" |
| 238 | incoming = [ |
| 239 | ("server", {"command_list": ["help", "list", "continue"]}), |
| 240 | ] |
| 241 | self.do_test( |
| 242 | incoming=incoming, |
| 243 | expected_outgoing=[], |
| 244 | expected_state={ |
| 245 | "pdb_commands": {"help", "list", "continue"}, |
| 246 | }, |
| 247 | ) |
| 248 | |
| 249 | def test_handling_info_message(self): |
| 250 | """Test handling a message payload with type='info'.""" |