(self)
| 312 | self.assertIs(is_same_domain(*pair), True) |
| 313 | |
| 314 | def test_bad(self): |
| 315 | for pair in ( |
| 316 | ("example2.com", "example.com"), |
| 317 | ("foo.example.com", "example.com"), |
| 318 | ("example.com:9999", "example.com:8888"), |
| 319 | ("foo.example.com:8888", ""), |
| 320 | ): |
| 321 | self.assertIs(is_same_domain(*pair), False) |
| 322 | |
| 323 | |
| 324 | class ETagProcessingTests(unittest.TestCase): |
nothing calls this directly
no test coverage detected