()
| 21 | |
| 22 | |
| 23 | def _load() -> dict: |
| 24 | if not os.path.exists(_SNAPSHOT): |
| 25 | pytest.skip("introspect_snapshot.json not built yet; run " |
| 26 | "build_introspect_snapshot.py") |
| 27 | with open(_SNAPSHOT, "r", encoding="utf-8") as f: |
| 28 | return json.load(f) |
| 29 | |
| 30 | |
| 31 | def test_snapshot_meta_and_top_level_keys_present(): |
no outgoing calls
no test coverage detected