(self)
| 54 | assert ProxyConfig(no_proxy='non-zero') |
| 55 | |
| 56 | def test_environment(self): |
| 57 | self.assertDictEqual(CONFIG.get_environment(), ENV) |
| 58 | empty = ProxyConfig() |
| 59 | self.assertDictEqual(empty.get_environment(), {}) |
| 60 | |
| 61 | def test_inject_proxy_environment(self): |
| 62 | # Proxy config is non null, env is None. |
nothing calls this directly
no test coverage detected