(mock_deps)
| 26 | |
| 27 | @pytest.fixture |
| 28 | def proxy_server(mock_deps): |
| 29 | with patch("logging.getLogger"): |
| 30 | server = ProxyServer( |
| 31 | host="127.0.0.1", port=8080, intercept_domains=["example.com"] |
| 32 | ) |
| 33 | return server |
| 34 | |
| 35 | |
| 36 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected