"""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"""

Hello
World

""", ) runner.invoke(djlint, [tmp_file.name, "--reformat"]) assert ( Path(tmp_file.name).read_text(encoding="utf8") == """

Hello
World

""" ) def test_void_self_closing_tag(runner: CliRunner, tmp_file: TextIO) -> None: write_to_file( tmp_file.name, b"""

Hello
World

""", ) runner.invoke(djlint, [tmp_file.name, "--reformat"]) assert ( Path(tmp_file.name).read_text(encoding="utf8") == """

Hello
World

""" )