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

Class DummyEmailService

tests/test_registration_sentinel_flow.py:8–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7
8class DummyEmailService(BaseEmailService):
9 def __init__(self):
10 super().__init__(EmailServiceType.TEMPMAIL)
11
12 def create_email(self, config=None):
13 return {"email": "tester@example.com", "service_id": "mailbox-1"}
14
15 def get_verification_code(self, *args, **kwargs):
16 return "123456"
17
18 def list_emails(self, **kwargs):
19 return []
20
21 def delete_email(self, email_id):
22 return True
23
24 def check_health(self):
25 return True
26
27
28class DummyResponse:

Callers 1

_make_engineFunction · 0.85

Calls

no outgoing calls

Tested by 1

_make_engineFunction · 0.68