(message: Message, attr: str, value: Any = b"foo")
| 868 | |
| 869 | |
| 870 | def _test_passthrough_attr(message: Message, attr: str, value: Any = b"foo") -> None: |
| 871 | assert getattr(message, attr) == getattr(message.data, attr) |
| 872 | setattr(message, attr, value) |
| 873 | assert getattr(message.data, attr) == value |
| 874 | |
| 875 | |
| 876 | def _test_decoded_attr(message, attr): |
no outgoing calls
no test coverage detected
searching dependent graphs…