mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-24 17:20:25 +00:00
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
"""Djlint tests specific to pyproject.toml configuration.
|
|
|
|
run::
|
|
|
|
pytest tests/test_config/test_custom_html/test_config.py --cov=src/djlint --cov-branch \
|
|
--cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
for a single test, run::
|
|
|
|
pytest tests/test_config.py::test_custom_html --cov=src/djlint \
|
|
--cov-branch --cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
"""
|
|
# pylint: disable=C0116
|
|
|
|
from typing import TextIO
|
|
|
|
from click.testing import CliRunner
|
|
|
|
from src.djlint import main as djlint
|
|
from tests.conftest import reformat
|
|
|
|
|
|
def test_custom_html(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
result = runner.invoke(
|
|
djlint, ["tests/test_config/test_custom_html/html.html", "--check"]
|
|
)
|
|
print(result.output)
|
|
assert (
|
|
"""-<mjml><mj-body>this is a email text</mj-body></mjml>
|
|
+<mjml>
|
|
+ <mj-body>
|
|
+ this is a email text
|
|
+ </mj-body>
|
|
+</mjml>
|
|
"""
|
|
in result.output
|
|
)
|
|
assert result.exit_code == 1
|
|
|
|
# https://github.com/Riverside-Healthcare/djLint/issues/236
|
|
output = reformat(
|
|
tmp_file, runner, b"<some-long-custom-element></some-long-custom-element>\n"
|
|
)
|
|
assert output.exit_code == 0
|