(self)
| 131 | |
| 132 | @gen_test |
| 133 | def test_refused_ipv4(self): |
| 134 | cleanup_func, port = refusing_port() |
| 135 | self.addCleanup(cleanup_func) |
| 136 | with self.assertRaises(IOError): |
| 137 | yield self.client.connect("127.0.0.1", port) |
| 138 | |
| 139 | def test_source_ip_fail(self): |
| 140 | """Fail when trying to use the source IP Address '8.8.8.8'.""" |
nothing calls this directly
no test coverage detected