mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
52 lines
2.1 KiB
Python
52 lines
2.1 KiB
Python
"""Djlint tests for cdata.
|
|
|
|
Some tests may be from prettier.io's html test suite.
|
|
|
|
Where applicable this notice may be needed:
|
|
|
|
#### Prettier.io license ####
|
|
Copyright © James Long and contributors
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
run::
|
|
|
|
poetry run pytest tests/test_html/test_cdata.py --cov=src/djlint --cov-branch \
|
|
--cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
poetry run pytest tests/test_html/test_cdata.py::test_example
|
|
|
|
"""
|
|
|
|
# from typing import TextIO
|
|
|
|
# from click.testing import CliRunner
|
|
|
|
# from tests.conftest import reformat
|
|
|
|
|
|
# def test_example(runner: CliRunner, tmp_file: TextIO) -> None:
|
|
|
|
# html_in = (
|
|
# b"""
|
|
# <span><![CDATA[<sender>John Smith</sender>]]></span>
|
|
# <span><![CDATA[1]]> a <![CDATA[2]]></span>
|
|
# <span><![CDATA[1]]> <br> <![CDATA[2]]></span>
|
|
# """
|
|
# ).strip()
|
|
|
|
# html_out = (
|
|
# """
|
|
# <span><![CDATA[<sender>John Smith</sender>]]></span>
|
|
# <span><![CDATA[1]]> a <![CDATA[2]]></span>
|
|
# <span
|
|
# ><![CDATA[1]]> <br />
|
|
# <![CDATA[2]]></span
|
|
# >
|
|
# """
|
|
# ).strip()
|
|
|
|
# output = reformat(tmp_file, runner, html_in)
|
|
|
|
# assert output.text == html_out
|