(self)
| 379 | """Test parse_message function""" |
| 380 | |
| 381 | def test_valid_message(self) -> None: |
| 382 | data = {"type": "REQUEST", "id": "123", "command": "test"} |
| 383 | result = parse_message(data) |
| 384 | assert result == data |
| 385 | |
| 386 | def test_missing_type(self) -> None: |
| 387 | data = {"id": "123", "command": "test"} |
nothing calls this directly
no test coverage detected