(self)
| 399 | |
| 400 | @pytest.fixture |
| 401 | def from_offset_fixture(self): |
| 402 | bytes_ = b"\x00\x00\x00\x2a\x00\x00\x00\x18" |
| 403 | stream_rdr = StreamReader(io.BytesIO(bytes_), BIG_ENDIAN) |
| 404 | offset, px_width, px_height = 0, 42, 24 |
| 405 | return stream_rdr, offset, px_width, px_height |
| 406 | |
| 407 | |
| 408 | class Describe_pHYsChunk: |
nothing calls this directly
no test coverage detected