(self)
| 78 | self.assertEqual(expected, smtplib.quotedata(teststr)) |
| 79 | |
| 80 | def testBasic1(self): |
| 81 | mock_socket.reply_with(b"220 Hola mundo") |
| 82 | # connects |
| 83 | client = self.client(HOST, self.port) |
| 84 | client.close() |
| 85 | |
| 86 | def testSourceAddress(self): |
| 87 | mock_socket.reply_with(b"220 Hola mundo") |