~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/app/tests/test_notifications.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 notifications."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
 
21
    'TestNotifications',
24
22
    ]
25
23
 
26
24
 
29
27
import tempfile
30
28
import unittest
31
29
 
32
 
from zope.component import getUtility
33
 
 
34
30
from mailman.app.lifecycle import create_list
35
31
from mailman.app.membership import add_member
36
32
from mailman.config import config
38
34
from mailman.interfaces.member import DeliveryMode, MemberRole
39
35
from mailman.testing.helpers import get_queue_messages
40
36
from mailman.testing.layers import ConfigLayer
 
37
from zope.component import getUtility
41
38
 
42
39
 
43
40