]>
git.madduck.net Git - etc/vim.git/blobdiff - tests/test_format.py
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
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.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
from unittest.mock import patch
import black
from unittest.mock import patch
import black
from parameterized import parameterized
from tests.util import (
from parameterized import parameterized
from tests.util import (
"function2",
"function_trailing_comma",
"import_spacing",
"function2",
"function_trailing_comma",
"import_spacing",
- "numeric_literals_py2",
- "python2",
- "python2_unicode_literals",
"remove_parens",
"slices",
"string_prefixes",
"remove_parens",
"slices",
"string_prefixes",
+SIMPLE_CASES_PY2 = [
+ "numeric_literals_py2",
+ "python2",
+ "python2_unicode_literals",
+]
+
EXPERIMENTAL_STRING_PROCESSING_CASES = [
"cantfit",
"comments7",
EXPERIMENTAL_STRING_PROCESSING_CASES = [
"cantfit",
"comments7",
class TestSimpleFormat(BlackBaseTestCase):
class TestSimpleFormat(BlackBaseTestCase):
+ @parameterized.expand(SIMPLE_CASES_PY2)
+ @pytest.mark.python2
+ @patch("black.dump_to_file", dump_to_stderr)
+ def test_simple_format_py2(self, filename: str) -> None:
+ self.check_file(filename, DEFAULT_MODE)
+
@parameterized.expand(SIMPLE_CASES)
@patch("black.dump_to_file", dump_to_stderr)
def test_simple_format(self, filename: str) -> None:
@parameterized.expand(SIMPLE_CASES)
@patch("black.dump_to_file", dump_to_stderr)
def test_simple_format(self, filename: str) -> None: