1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Converted recently refactored templates tests to SimpleTestCase.

These test methods don't need DB setup/teardown.

Refs #23768 and b872134b.
This commit is contained in:
Ramiro Morales
2014-12-03 17:36:17 -03:00
committed by Tim Graham
parent 2cd19f3738
commit 16f26defa7
39 changed files with 90 additions and 90 deletions

View File

@@ -4,14 +4,14 @@ import warnings
from django.core.urlresolvers import NoReverseMatch
from django.template.base import TemplateSyntaxError
from django.template.loader import get_template
from django.test import override_settings, TestCase
from django.test import override_settings, SimpleTestCase
from django.utils.deprecation import RemovedInDjango20Warning
from .utils import render, setup
@override_settings(ROOT_URLCONF='template_tests.urls')
class UrlTagTests(TestCase):
class UrlTagTests(SimpleTestCase):
# Successes
@setup({'url01': '{% url "template_tests.views.client" client.id %}'})