MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / DummyContext

Class DummyContext

tests/test_database_runtime_config.py:31–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29
30
31class 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
42def test_get_database_info_reports_sqlite(monkeypatch, tmp_path):

Calls

no outgoing calls