()
| 9 | |
| 10 | @pytest.fixture |
| 11 | def proxy_server(): |
| 12 | return ProxyServer( |
| 13 | host="127.0.0.1", port=8080, intercept_domains=["*.example.com", "api.test.com"] |
| 14 | ) |
| 15 | |
| 16 | |
| 17 | def test_should_intercept(proxy_server): |
nothing calls this directly
no test coverage detected