()
| 16 | |
| 17 | |
| 18 | def test_parse_prefetch_config_always() -> None: |
| 19 | assert parse_prefetch_config('always', []) is None |
| 20 | assert parse_prefetch_config('ALWAYS', []) is None |
| 21 | assert parse_prefetch_config(' always ', ['ignored']) is None |
| 22 | |
| 23 | |
| 24 | def test_parse_prefetch_config_listed() -> None: |
nothing calls this directly
no test coverage detected