X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a57ab326b20b720518ab6f513bd0f8ba357d8d86..24c708eb374a856372284fb1a4f021fec292f713:/tests/test_format.py diff --git a/tests/test_format.py b/tests/test_format.py index 269bbac..d80eaa7 100644 --- a/tests/test_format.py +++ b/tests/test_format.py @@ -75,10 +75,14 @@ PREVIEW_CASES: List[str] = [ # string processing "cantfit", "comments7", + "comments8", "long_strings", "long_strings__edge_case", "long_strings__regression", "percent_precedence", + "remove_except_parens", + "remove_for_brackets", + "one_element_subscript", ] SOURCES: List[str] = [ @@ -188,6 +192,16 @@ def test_pep_570() -> None: assert_format(source, expected, minimum_version=(3, 8)) +def test_remove_with_brackets() -> None: + source, expected = read_data("remove_with_brackets") + assert_format( + source, + expected, + black.Mode(preview=True), + minimum_version=(3, 9), + ) + + @pytest.mark.parametrize("filename", PY310_CASES) def test_python_310(filename: str) -> None: source, expected = read_data(filename)