| 17 | |
| 18 | |
| 19 | class DummySession: |
| 20 | def __init__(self): |
| 21 | self.calls = [] |
| 22 | |
| 23 | def post(self, url, **kwargs): |
| 24 | self.calls.append({"url": url, "kwargs": kwargs}) |
| 25 | return DummyResponse(status_code=200, payload={"page": {"type": "about_you"}}, url=url) |
| 26 | |
| 27 | |
| 28 | def _header_value(headers, name: str): |
no outgoing calls