X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3800ebd81df6a1c31d1eac8cc15899537b9cbb61..f6188ce6dcde3fcad381c52ecc74374e7d0579c9:/tests/test_format.py?ds=inline diff --git a/tests/test_format.py b/tests/test_format.py index 4de3170..d80eaa7 100644 --- a/tests/test_format.py +++ b/tests/test_format.py @@ -80,6 +80,8 @@ PREVIEW_CASES: List[str] = [ "long_strings__edge_case", "long_strings__regression", "percent_precedence", + "remove_except_parens", + "remove_for_brackets", "one_element_subscript", ] @@ -190,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)