()
| 10 | |
| 11 | |
| 12 | def test_parse_prefetch_config_never() -> None: |
| 13 | assert parse_prefetch_config('never', []) == [] |
| 14 | assert parse_prefetch_config('NEVER', ['ignored', 'values']) == [] |
| 15 | assert parse_prefetch_config(' never ', []) == [] |
| 16 | |
| 17 | |
| 18 | def test_parse_prefetch_config_always() -> None: |
nothing calls this directly
no test coverage detected