(store, tmpdir)
| 273 | |
| 274 | |
| 275 | def test_mark_config_as_used(store, tmpdir): |
| 276 | with tmpdir.as_cwd(): |
| 277 | f = tmpdir.join('f').ensure() |
| 278 | store.mark_config_used('f') |
| 279 | assert _select_all_configs(store) == [f.strpath] |
| 280 | |
| 281 | |
| 282 | def test_mark_config_as_used_idempotent(store, tmpdir): |
no test coverage detected