Switched mail tests to SimpleTestCase.

This commit is contained in:
Ramiro Morales 2013-08-21 07:48:16 -03:00
parent ececbe77ff
commit a5cf5da50d
1 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@ from django.core.mail import (EmailMessage, mail_admins, mail_managers,
EmailMultiAlternatives, send_mail, send_mass_mail) EmailMultiAlternatives, send_mail, send_mass_mail)
from django.core.mail.backends import console, dummy, locmem, filebased, smtp from django.core.mail.backends import console, dummy, locmem, filebased, smtp
from django.core.mail.message import BadHeaderError from django.core.mail.message import BadHeaderError
from django.test import TestCase from django.test import SimpleTestCase
from django.test.utils import override_settings from django.test.utils import override_settings
from django.utils.encoding import force_str, force_text from django.utils.encoding import force_str, force_text
from django.utils.six import PY3, StringIO, string_types from django.utils.six import PY3, StringIO, string_types
@ -46,7 +46,7 @@ class HeadersCheckMixin(object):
'the following headers: %s' % (headers - msg_headers),) 'the following headers: %s' % (headers - msg_headers),)
class MailTests(HeadersCheckMixin, TestCase): class MailTests(HeadersCheckMixin, SimpleTestCase):
""" """
Non-backend specific tests. Non-backend specific tests.
""" """
@ -403,7 +403,7 @@ class MailTests(HeadersCheckMixin, TestCase):
self.assertTrue(str('Child Subject') in parent_s) self.assertTrue(str('Child Subject') in parent_s)
class PythonGlobalState(TestCase): class PythonGlobalState(SimpleTestCase):
""" """
Tests for #12422 -- Django smarts (#2472/#11212) with charset of utf-8 text Tests for #12422 -- Django smarts (#2472/#11212) with charset of utf-8 text
parts shouldn't pollute global email Python package charset registry when parts shouldn't pollute global email Python package charset registry when
@ -636,7 +636,7 @@ class BaseEmailBackendTests(HeadersCheckMixin, object):
self.fail("close() unexpectedly raised an exception: %s" % e) self.fail("close() unexpectedly raised an exception: %s" % e)
class LocmemBackendTests(BaseEmailBackendTests, TestCase): class LocmemBackendTests(BaseEmailBackendTests, SimpleTestCase):
email_backend = 'django.core.mail.backends.locmem.EmailBackend' email_backend = 'django.core.mail.backends.locmem.EmailBackend'
def get_mailbox_content(self): def get_mailbox_content(self):
@ -666,7 +666,7 @@ class LocmemBackendTests(BaseEmailBackendTests, TestCase):
send_mail('Subject\nMultiline', 'Content', 'from@example.com', ['to@example.com']) send_mail('Subject\nMultiline', 'Content', 'from@example.com', ['to@example.com'])
class FileBackendTests(BaseEmailBackendTests, TestCase): class FileBackendTests(BaseEmailBackendTests, SimpleTestCase):
email_backend = 'django.core.mail.backends.filebased.EmailBackend' email_backend = 'django.core.mail.backends.filebased.EmailBackend'
def setUp(self): def setUp(self):
@ -723,7 +723,7 @@ class FileBackendTests(BaseEmailBackendTests, TestCase):
connection.close() connection.close()
class ConsoleBackendTests(BaseEmailBackendTests, TestCase): class ConsoleBackendTests(BaseEmailBackendTests, SimpleTestCase):
email_backend = 'django.core.mail.backends.console.EmailBackend' email_backend = 'django.core.mail.backends.console.EmailBackend'
def setUp(self): def setUp(self):
@ -826,7 +826,7 @@ class FakeSMTPServer(smtpd.SMTPServer, threading.Thread):
self.join() self.join()
class SMTPBackendTests(BaseEmailBackendTests, TestCase): class SMTPBackendTests(BaseEmailBackendTests, SimpleTestCase):
email_backend = 'django.core.mail.backends.smtp.EmailBackend' email_backend = 'django.core.mail.backends.smtp.EmailBackend'
@classmethod @classmethod