djLint/tests/test_html/test_next_line_empty.py
2022-05-16 09:25:29 -05:00

71 lines
2.3 KiB
Python

"""Djlint tests for next line empty.
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:
pytest tests/test_html/test_next_line_empty.py --cov=src/djlint --cov-branch \
--cov-report xml:coverage.xml --cov-report term-missing
pytest tests/test_html/test_next_line_empty.py::test_standalone_end_marker
"""
# from typing import TextIO
# from click.testing import CliRunner
# from tests.conftest import reformat
# def test_standalone_end_marker(runner: CliRunner, tmp_file: TextIO) -> None:
# html_in = (
# b"""
# <div></div
# >
# <span></span>
# <div></div
# >
# <span></span>
# <div></div
# >
# <span></span>
# <div>
# <a href="#123123123123123131231312321312312312312312312312312313123123123123123"
# >123123123123</a
# >
# 123123
# </div>
# """
# ).strip()
# html_out = (
# """
# <div></div>
# <span></span>
# <div></div>
# <span></span>
# <div></div>
# <span></span>
# <div>
# <a
# href="#123123123123123131231312321312312312312312312312312313123123123123123"
# >123123123123</a
# >
# 123123
# </div>
# """
# ).strip()
# output = reformat(tmp_file, runner, html_in)