mirror of
https://github.com/django-components/django-components.git
synced 2025-08-29 02:14:05 +00:00
Caching templates to allow for dynamic template generation
Co-authored-by: rbeard0330 <@dul2k3BKW6m>
This commit is contained in:
parent
3919943cbd
commit
07986c5216
9 changed files with 36 additions and 17 deletions
|
@ -1,3 +1,4 @@
|
|||
from django import setup
|
||||
from django.test import SimpleTestCase
|
||||
|
||||
|
||||
|
@ -5,3 +6,5 @@ class Django111CompatibleSimpleTestCase(SimpleTestCase):
|
|||
def assertHTMLEqual(self, left, right):
|
||||
left = left.replace(' type="text/javascript"', '')
|
||||
super(Django111CompatibleSimpleTestCase, self).assertHTMLEqual(left, right)
|
||||
|
||||
setup()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue