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