(self)
| 151 | self.assertInstancesEqual("000::c0a8:0001", "::c0a8:1") |
| 152 | |
| 153 | def test_int(self): |
| 154 | self.assertInstancesEqual(0, "::") |
| 155 | self.assertInstancesEqual(3232235521, "::c0a8:1") |
| 156 | |
| 157 | def test_packed(self): |
| 158 | addr = b'\0'*12 + bytes.fromhex("00000000") |
nothing calls this directly
no test coverage detected