mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-17 05:50:24 +00:00
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
"""DjLint tests for alpine.js.
|
|
|
|
run:
|
|
|
|
pytest tests/test_html/test_alpinejs.py --cov=src/djlint --cov-branch \
|
|
--cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
pytest tests/test_html/test_alpinejs.py::test_alpine_js
|
|
|
|
"""
|
|
# pylint: disable=C0116
|
|
from typing import TextIO
|
|
|
|
from click.testing import CliRunner
|
|
|
|
from tests.conftest import reformat
|
|
|
|
|
|
def test_alpine_js(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
output = reformat(
|
|
tmp_file,
|
|
runner,
|
|
b"""<div id="collapse"
|
|
x-data="{ show: true }"
|
|
x-show="show"
|
|
x-transition.duration.500ms
|
|
:disabled="!$store.userPreferences.deleteConfirm"
|
|
@click="clicked=true">
|
|
</div>""",
|
|
)
|
|
|
|
assert output.exit_code == 0
|
|
|
|
|
|
def test_alpine_nested_html(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
output = reformat(
|
|
tmp_file,
|
|
runner,
|
|
b"""<html lang="en">
|
|
<body>
|
|
<!-- x-data , x-text , x-html -->
|
|
<div x-data="{key:'value',message:'hello <b>world</b> '}">
|
|
<p x-text="key"></p>
|
|
<p x-html="message"></p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
""",
|
|
)
|
|
|
|
assert output.exit_code == 0
|