()
| 419 | |
| 420 | |
| 421 | def test_issue1338_name_resolving() -> None: |
| 422 | pytest.importorskip("requests") |
| 423 | monkeypatch = MonkeyPatch() |
| 424 | try: |
| 425 | monkeypatch.delattr("requests.sessions.Session.request") |
| 426 | finally: |
| 427 | monkeypatch.undo() |
| 428 | |
| 429 | |
| 430 | def test_context() -> None: |
nothing calls this directly
no test coverage detected