mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
16f26defa7
These test methods don't need DB setup/teardown.
Refs #23768 and b872134b
.
12 lines
270 B
Python
12 lines
270 B
Python
from django.test import SimpleTestCase
|
|
|
|
from .utils import render, setup
|
|
|
|
|
|
class LoremTagTests(SimpleTestCase):
|
|
|
|
@setup({'lorem1': '{% lorem 3 w %}'})
|
|
def test_lorem1(self):
|
|
output = render('lorem1')
|
|
self.assertEqual(output, 'lorem ipsum dolor')
|