All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 from unittest.mock import patch
4 from parameterized import parameterized
6 from tests.util import (
17 "beginning_backslash",
20 "class_blank_parentheses",
21 "class_methods_new_line",
30 "comments_non_breaking_space",
31 "comment_after_escaped_newline",
33 "composition_no_trailing_comma",
49 "function_trailing_comma",
52 "long_strings__edge_case",
53 "long_strings__regression",
54 "numeric_literals_py2",
57 "python2_unicode_literals",
61 "tricky_unicode_symbols",
67 "tests/test_black.py",
68 "tests/test_format.py",
69 "tests/test_blackd.py",
70 "src/black/__init__.py",
71 "src/blib2to3/pygram.py",
72 "src/blib2to3/pytree.py",
73 "src/blib2to3/pgen2/conv.py",
74 "src/blib2to3/pgen2/driver.py",
75 "src/blib2to3/pgen2/grammar.py",
76 "src/blib2to3/pgen2/literals.py",
77 "src/blib2to3/pgen2/parse.py",
78 "src/blib2to3/pgen2/pgen.py",
79 "src/blib2to3/pgen2/tokenize.py",
80 "src/blib2to3/pgen2/token.py",
85 class TestSimpleFormat(BlackBaseTestCase):
86 @parameterized.expand(SIMPLE_CASES)
87 @patch("black.dump_to_file", dump_to_stderr)
88 def test_simple_format(self, filename: str) -> None:
89 source, expected = read_data(filename)
91 self.assertFormatEqual(expected, actual)
92 black.assert_equivalent(source, actual)
93 black.assert_stable(source, actual, DEFAULT_MODE)
95 @parameterized.expand(SOURCES)
96 @patch("black.dump_to_file", dump_to_stderr)
97 def test_source_is_formatted(self, filename: str) -> None:
98 path = THIS_DIR.parent / filename
99 source, expected = read_data(str(path), data=False)
100 actual = fs(source, mode=DEFAULT_MODE)
101 self.assertFormatEqual(expected, actual)
102 black.assert_equivalent(source, actual)
103 black.assert_stable(source, actual, DEFAULT_MODE)
104 self.assertFalse(ff(path))