()
| 390 | |
| 391 | |
| 392 | def test_issue1338_name_resolving() -> None: |
| 393 | pytest.importorskip("requests") |
| 394 | monkeypatch = MonkeyPatch() |
| 395 | try: |
| 396 | monkeypatch.delattr("requests.sessions.Session.request") |
| 397 | finally: |
| 398 | monkeypatch.undo() |
| 399 | |
| 400 | |
| 401 | def test_context() -> None: |
nothing calls this directly
no test coverage detected