mirror of
https://github.com/django-components/django-components.git
synced 2025-08-31 11:17:21 +00:00
fix(tests): some minor anomalies
This commit is contained in:
parent
f67cd37dea
commit
0ae04467c5
1 changed files with 2 additions and 7 deletions
|
@ -52,12 +52,7 @@ class ComponentMediaRenderingTests(SimpleTestCase):
|
||||||
"{% load component_tags %}{% component_dependencies %}"
|
"{% load component_tags %}{% component_dependencies %}"
|
||||||
)
|
)
|
||||||
rendered = create_and_process_template_response(template)
|
rendered = create_and_process_template_response(template)
|
||||||
self.assertInHTML('<script src="script.js>"', rendered, count=0)
|
self.assertInHTML('<script src="script.js">', rendered, count=0)
|
||||||
self.assertInHTML(
|
|
||||||
'<link href="style.css" type="text/css" media="all" rel="stylesheet"/>',
|
|
||||||
rendered,
|
|
||||||
count=0,
|
|
||||||
)
|
|
||||||
self.assertInHTML(
|
self.assertInHTML(
|
||||||
'<link href="style.css" type="text/css" media="all" rel="stylesheet"/>',
|
'<link href="style.css" type="text/css" media="all" rel="stylesheet"/>',
|
||||||
rendered,
|
rendered,
|
||||||
|
@ -71,7 +66,7 @@ class ComponentMediaRenderingTests(SimpleTestCase):
|
||||||
"{% load component_tags %}{% component_js_dependencies %}"
|
"{% load component_tags %}{% component_js_dependencies %}"
|
||||||
)
|
)
|
||||||
rendered = create_and_process_template_response(template)
|
rendered = create_and_process_template_response(template)
|
||||||
self.assertInHTML('<script src="script.js>"', rendered, count=0)
|
self.assertInHTML('<script src="script.js">', rendered, count=0)
|
||||||
|
|
||||||
def test_no_css_dependencies_when_no_components_used(self):
|
def test_no_css_dependencies_when_no_components_used(self):
|
||||||
component.registry.register(name="test", component=SimpleComponent)
|
component.registry.register(name="test", component=SimpleComponent)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue