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