"""Djlint tests specific to Handlebars.js. run:: pytest tests/test_handlebars.py --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 .conftest import reformat def test_handlebars_else(runner: CliRunner, tmp_file: TextIO) -> None: output = reformat(tmp_file, runner, b"{{^}}") assert output["exit_code"] == 0 def test_each(runner: CliRunner, tmp_file: TextIO) -> None: output = reformat( tmp_file, runner, b"""{{#each people}}{{print_person}}
and more long stuff
{{/each}}""", ) assert output["exit_code"] == 1 assert ( output["text"] == r"""{{#each people }} {{ print_person }}and more long stuff
{{/each }} """ ) def test_with(runner: CliRunner, tmp_file: TextIO) -> None: output = reformat( tmp_file, runner, b"""{{#with person}}{{firstname}} {{lastname}}
{{/with}}""", ) assert output["exit_code"] == 1 assert ( output["text"] == r"""{{#with person }}{{ firstname }} {{ lastname }}
{{/with }} """ )