~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/commands/tests/test_confirm.py

  • Committer: Barry Warsaw
  • Date: 2015-01-05 01:20:33 UTC
  • mfrom: (7264.4.66 py3)
  • Revision ID: barry@list.org-20150105012033-zdrw9c2odhpf22fz
Merge the Python 3 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Test the `confirm` command."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'TestConfirm',
25
22
    ]
27
24
 
28
25
import unittest
29
26
 
30
 
from zope.component import getUtility
31
 
 
32
27
from mailman.app.lifecycle import create_list
33
28
from mailman.commands.eml_confirm import Confirm
34
29
from mailman.email.message import Message
37
32
from mailman.runners.command import Results
38
33
from mailman.testing.helpers import get_queue_messages, reset_the_world
39
34
from mailman.testing.layers import ConfigLayer
 
35
from zope.component import getUtility
40
36
 
41
37
 
42
38