diff options
Diffstat (limited to 'src/mailman/runners/tests')
| -rw-r--r-- | src/mailman/runners/tests/test_confirm.py | 4 | ||||
| -rw-r--r-- | src/mailman/runners/tests/test_join.py | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/mailman/runners/tests/test_confirm.py b/src/mailman/runners/tests/test_confirm.py index 090451ce7..71ec5988d 100644 --- a/src/mailman/runners/tests/test_confirm.py +++ b/src/mailman/runners/tests/test_confirm.py @@ -46,14 +46,14 @@ class TestConfirm(unittest.TestCase): layer = ConfigLayer def setUp(self): - registrar = getUtility(IRegistrar) self._commandq = config.switchboards['command'] self._runner = make_testable_runner(CommandRunner, 'command') with transaction(): # Register a subscription requiring confirmation. self._mlist = create_list('test@example.com') self._mlist.send_welcome_message = False - self._token = registrar.register(self._mlist, 'anne@example.org') + anne = getUtility(IUserManager).create_address('anne@example.org') + self._token = IRegistrar(self._mlist).register(anne) def test_confirm_with_re_prefix(self): subject = 'Re: confirm {0}'.format(self._token) diff --git a/src/mailman/runners/tests/test_join.py b/src/mailman/runners/tests/test_join.py index 4006675e4..c3b52cf0c 100644 --- a/src/mailman/runners/tests/test_join.py +++ b/src/mailman/runners/tests/test_join.py @@ -160,8 +160,8 @@ class TestJoinWithDigests(unittest.TestCase): subject_words = str(messages[1].msg['subject']).split() self.assertEqual(subject_words[0], 'confirm') token = subject_words[1] - status = getUtility(IRegistrar).confirm(token) - self.assertTrue(status, 'Confirmation failed') + status = IRegistrar(self._mlist).confirm(token) + self.assertIsNone(status, 'Confirmation failed') # Now, make sure that Anne is a member of the list and is receiving # digest deliveries. members = getUtility(ISubscriptionService).find_members( @@ -197,6 +197,8 @@ join digest=no self.assertEqual(anne.address.email, 'anne@example.org') self.assertEqual(anne.delivery_mode, DeliveryMode.regular) + # LP: #1444184 - digest=mime is not currently supported. + @unittest.expectedFailure def test_join_with_mime_digests(self): # Test the digest=mime argument to the join command. msg = mfs("""\ @@ -211,6 +213,8 @@ join digest=mime self.assertEqual(anne.address.email, 'anne@example.org') self.assertEqual(anne.delivery_mode, DeliveryMode.mime_digests) + # LP: #1444184 - digest=mime is not currently supported. + @unittest.expectedFailure def test_join_with_plain_digests(self): # Test the digest=mime argument to the join command. msg = mfs("""\ |
