(self)
| 458 | |
| 459 | @pytest.fixture |
| 460 | def macStyle_fixture(self): |
| 461 | bytes_ = b"xxxxyyyy....................................\xF0\xBA........" |
| 462 | stream = _Stream(io.BytesIO(bytes_)) |
| 463 | offset, length = 0, len(bytes_) |
| 464 | head_table = _HeadTable(None, stream, offset, length) |
| 465 | expected_value = 61626 |
| 466 | return head_table, expected_value |
| 467 | |
| 468 | # fixture components ----------------------------------- |
| 469 |
nothing calls this directly
no test coverage detected