Thanks to Robert Schöftner (@robert.schoeftner) for the report and the solution. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
12 lines
538 B
Python
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'
|