| 29 | |
| 30 | |
| 31 | class DummyContext: |
| 32 | def __init__(self): |
| 33 | self.session = DummySession() |
| 34 | |
| 35 | def __enter__(self): |
| 36 | return self.session |
| 37 | |
| 38 | def __exit__(self, exc_type, exc, tb): |
| 39 | return False |
| 40 | |
| 41 | |
| 42 | def test_get_database_info_reports_sqlite(monkeypatch, tmp_path): |
no outgoing calls