Files
mayan-edms/mayan/apps/mailer/tests/literals.py
Roberto Rosario 78d3dd8b9b Fix new mailer creation view. GitLab issue #431.
Thanks to Robert Schöftner (@robert.schoeftner) for the
report and the solution.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2017-09-05 01:48:34 -04:00

12 lines
538 B
Python

from __future__ import unicode_literals
TEST_EMAIL_ADDRESS = 'test@example.com'
TEST_RECIPIENTS_MULTIPLE_COMMA = 'test@example.com,test2@example.com'
TEST_RECIPIENTS_MULTIPLE_SEMICOLON = 'test@example.com;test2@example.com'
TEST_RECIPIENTS_MULTIPLE_MIXED = 'test@example.com,test2@example.com;test2@example.com'
TEST_RECIPIENTS_MULTIPLE_MIXED_LIST = (
'test@example.com', 'test2@example.com', 'test2@example.com',
)
TEST_USER_MAILER_BACKEND_PATH = 'mailer.tests.mailers.TestBackend'
TEST_USER_MAILER_LABEL = 'test user mailer label'