(self)
| 75 | |
| 76 | class URITests(unittest.TestCase): |
| 77 | def test_parse_valid_uris(self): |
| 78 | for uri, parsed in VALID_URIS: |
| 79 | with self.subTest(uri=uri): |
| 80 | self.assertEqual(parse_uri(uri), parsed) |
| 81 | |
| 82 | def test_parse_invalid_uris(self): |
| 83 | for uri in INVALID_URIS: |
nothing calls this directly
no test coverage detected