(self)
| 184 | assertBadLength(17) |
| 185 | |
| 186 | def test_blank_scope_id(self): |
| 187 | address = ('::1%') |
| 188 | with self.assertAddressError('Invalid IPv6 address: "%r"', address): |
| 189 | self.factory(address) |
| 190 | |
| 191 | def test_invalid_scope_id_with_percent(self): |
| 192 | address = ('::1%scope%') |
nothing calls this directly
no test coverage detected