(self)
| 193 | |
| 194 | class ProxyTests(unittest.TestCase): |
| 195 | def test_parse_valid_proxies(self): |
| 196 | for proxy, parsed in VALID_PROXIES: |
| 197 | with self.subTest(proxy=proxy): |
| 198 | self.assertEqual(parse_proxy(proxy), parsed) |
| 199 | |
| 200 | def test_parse_invalid_proxies(self): |
| 201 | for proxy in INVALID_PROXIES: |
nothing calls this directly
no test coverage detected