86
84
"""A fake smtp server that implements login by accepting anybody."""
88
86
def login(self, user, password):
92
90
class TestSMTPConnection(tests.TestCaseInTempDir):
94
92
def get_connection(self, text, smtp_factory=None):
98
94
return smtp_connection.SMTPConnection(my_config,
99
95
_smtp_factory=smtp_factory)