(self)
| 116 | self.factory(address) |
| 117 | |
| 118 | def test_int(self): |
| 119 | self.assertInstancesEqual(0, "0.0.0.0") |
| 120 | self.assertInstancesEqual(3232235521, "192.168.0.1") |
| 121 | |
| 122 | def test_packed(self): |
| 123 | self.assertInstancesEqual(bytes.fromhex("00000000"), "0.0.0.0") |
nothing calls this directly
no test coverage detected