(self)
| 73 | class CommonTestMixin: |
| 74 | |
| 75 | def test_empty_address(self): |
| 76 | with self.assertAddressError("Address cannot be empty"): |
| 77 | self.factory("") |
| 78 | |
| 79 | def test_floats_rejected(self): |
| 80 | with self.assertAddressError(re.escape(repr("1.0"))): |
nothing calls this directly
no test coverage detected