(gz_path)
| 361 | ext = _FakeExtractor() |
| 362 | |
| 363 | def _prepare(gz_path): |
| 364 | if gz_path == gz_a: |
| 365 | raise SkippedExtraction( |
| 366 | "too large", |
| 367 | stats=ExtractionStats(plain_text_len=999999), |
| 368 | ) |
| 369 | return prepared_b |
| 370 | |
| 371 | ext.prepare.side_effect = _prepare |
| 372 |
nothing calls this directly
no test coverage detected