mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +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:
parent
2cd19f3738
commit
16f26defa7
39 changed files with 90 additions and 90 deletions
|
|
@ -1,13 +1,13 @@
|
|||
from django.conf import settings
|
||||
from django.template.base import TemplateDoesNotExist, TemplateSyntaxError
|
||||
from django.template.loader import get_template
|
||||
from django.test import TestCase
|
||||
from django.test import SimpleTestCase
|
||||
|
||||
from .test_extends import inheritance_templates
|
||||
from .utils import render, setup
|
||||
|
||||
|
||||
class ExceptionsTests(TestCase):
|
||||
class ExceptionsTests(SimpleTestCase):
|
||||
|
||||
@setup({'exception01': "{% extends 'nonexistent' %}"})
|
||||
def test_exception01(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue