(self)
| 128 | client.close() |
| 129 | |
| 130 | def testTimeoutZero(self): |
| 131 | mock_socket.reply_with(b"220 Hola mundo") |
| 132 | with self.assertRaises(ValueError): |
| 133 | self.client(HOST, self.port, timeout=0) |
| 134 | |
| 135 | def testTimeoutValue(self): |
| 136 | mock_socket.reply_with(b"220 Hola mundo") |
no test coverage detected