summaryrefslogtreecommitdiff
path: root/service/test/support/test_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/support/test_helper.py')
-rw-r--r--service/test/support/test_helper.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/service/test/support/test_helper.py b/service/test/support/test_helper.py
index ebe8a897..57f41a6e 100644
--- a/service/test/support/test_helper.py
+++ b/service/test/support/test_helper.py
@@ -45,6 +45,20 @@ def mail_dict():
}
+def duplicates_in_fields_mail_dict():
+ return {
+ 'header': {
+ 'to': ['to@pixelated.org', 'another@pixelated.org', 'third@pixelated.org'],
+ 'cc': ['cc@pixelated.org', 'another@pixelated.org', 'third@pixelated.org'],
+ 'bcc': ['bcc@pixelated.org', 'another@pixelated.org'],
+ 'subject': 'Subject'
+ },
+ 'body': 'Body',
+ 'ident': '',
+ 'tags': []
+ }
+
+
class TestDoc(object):
def __init__(self, content):
self.content = content