1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Moved contrib.humanize tests out of contrib.

This commit is contained in:
Tim Graham 2015-02-10 08:44:52 -05:00
parent 00da46091a
commit 8192a164de
2 changed files with 2 additions and 1 deletions

View File

View File

@ -6,7 +6,7 @@ from unittest import skipIf
from django.contrib.humanize.templatetags import humanize from django.contrib.humanize.templatetags import humanize
from django.template import Context, Template, defaultfilters from django.template import Context, Template, defaultfilters
from django.test import TestCase, override_settings from django.test import TestCase, modify_settings, override_settings
from django.utils import translation from django.utils import translation
from django.utils.html import escape from django.utils.html import escape
from django.utils.timezone import get_fixed_timezone, utc from django.utils.timezone import get_fixed_timezone, utc
@ -35,6 +35,7 @@ class MockDateTime(datetime.datetime):
return now.replace(tzinfo=tz) + tz.utcoffset(now) return now.replace(tzinfo=tz) + tz.utcoffset(now)
@modify_settings(INSTALLED_APPS={'append': 'django.contrib.humanize'})
class HumanizeTests(TestCase): class HumanizeTests(TestCase):
def humanize_tester(self, test_list, result_list, method, normalize_result_func=escape): def humanize_tester(self, test_list, result_list, method, normalize_result_func=escape):