mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-17 05:50:24 +00:00
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
"""Djlint tests for self closing tags.
|
|
|
|
run:
|
|
|
|
pytest tests/test_html/test_selfclosing.py --cov=src/djlint --cov-branch \
|
|
--cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
pytest tests/test_html/test_selfclosing.py::test_self_closing_tags
|
|
|
|
|
|
"""
|
|
# pylint: disable=C0116
|
|
from pathlib import Path
|
|
from typing import TextIO
|
|
|
|
from click.testing import CliRunner
|
|
|
|
from src.djlint import main as djlint
|
|
from tests.conftest import write_to_file
|
|
|
|
|
|
def test_self_closing_tags(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
write_to_file(
|
|
tmp_file.name,
|
|
b"""<p><span>Hello</span> <br /><input /><link /><img /><source /><meta /> <span>World</span></p>""",
|
|
)
|
|
runner.invoke(djlint, [tmp_file.name, "--reformat"])
|
|
assert (
|
|
Path(tmp_file.name).read_text(encoding="utf8")
|
|
== """<p>
|
|
<span>Hello</span>
|
|
<br />
|
|
<input />
|
|
<link />
|
|
<img />
|
|
<source />
|
|
<meta />
|
|
<span>World</span>
|
|
</p>
|
|
"""
|
|
)
|
|
|
|
|
|
def test_void_self_closing_tag(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
write_to_file(
|
|
tmp_file.name,
|
|
b"""<p><span>Hello</span> <br><input><link><img><source><meta> <span>World</span></p>""",
|
|
)
|
|
runner.invoke(djlint, [tmp_file.name, "--reformat"])
|
|
assert (
|
|
Path(tmp_file.name).read_text(encoding="utf8")
|
|
== """<p>
|
|
<span>Hello</span>
|
|
<br>
|
|
<input>
|
|
<link>
|
|
<img>
|
|
<source>
|
|
<meta>
|
|
<span>World</span>
|
|
</p>
|
|
"""
|
|
)
|