X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/1e0ec543ff3a7de715c8ee3359c8defb2c2c0e0d..136930fccb99320865622e12ffc21bdd45fd7501:/tests/test_format.py diff --git a/tests/test_format.py b/tests/test_format.py index 4359dee..d44be1e 100644 --- a/tests/test_format.py +++ b/tests/test_format.py @@ -73,6 +73,8 @@ EXPERIMENTAL_STRING_PROCESSING_CASES = [ PY310_CASES = [ "pattern_matching_simple", "pattern_matching_complex", + "pattern_matching_extras", + "pattern_matching_style", "parenthesized_context_managers", ] @@ -199,6 +201,15 @@ def test_python_310(filename: str) -> None: assert_format(source, expected, mode, minimum_version=(3, 10)) +def test_patma_invalid() -> None: + source, expected = read_data("pattern_matching_invalid") + mode = black.Mode(target_versions={black.TargetVersion.PY310}) + with pytest.raises(black.parsing.InvalidInput) as exc_info: + assert_format(source, expected, mode, minimum_version=(3, 10)) + + exc_info.match("Cannot parse: 10:11") + + def test_docstring_no_string_normalization() -> None: """Like test_docstring but with string normalization off.""" source, expected = read_data("docstring_no_string_normalization")