]>
git.madduck.net Git - etc/vim.git/blobdiff - tests/test_blackd.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
from click.testing import CliRunner
from unittest.mock import patch
from click.testing import CliRunner
- from aiohttp.test_utils import AioHTTPTestCase, unittest_run_loop
+ from aiohttp.test_utils import AioHTTPTestCase
+except ImportError as e:
+ raise RuntimeError("Please install Black with the 'd' extra") from e
+
+try:
+ from aiohttp.test_utils import unittest_run_loop
- has_blackd_deps = False
-else:
- has_blackd_deps = True
+ # unittest_run_loop is unnecessary and a no-op since aiohttp 3.8, and aiohttp 4
+ # removed it. To maintain compatibility we can make our own no-op decorator.
+ def unittest_run_loop(func: Any, *args: Any, **kwargs: Any) -> Any:
+ return func
@unittest_run_loop
async def test_blackd_pyi(self) -> None:
@unittest_run_loop
async def test_blackd_pyi(self) -> None:
- source, expected = read_data("stub.pyi")
+ source, expected = read_data("miscellaneous", " stub.pyi")
response = await self.client.post(
"/", data=source, headers={blackd.PYTHON_VARIANT_HEADER: "pyi"}
)
response = await self.client.post(
"/", data=source, headers={blackd.PYTHON_VARIANT_HEADER: "pyi"}
)
r"(In|Out)\t\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d\.\d\d\d\d\d\d \+\d\d\d\d"
)
r"(In|Out)\t\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d\.\d\d\d\d\d\d \+\d\d\d\d"
)
- source, _ = read_data("blackd_diff.py ")
- expected, _ = read_data("blackd_diff.diff")
+ source, _ = read_data("miscellaneous", "blackd_diff ")
+ expected, _ = read_data("miscellaneous", " blackd_diff.diff")
response = await self.client.post(
"/", data=source, headers={blackd.DIFF_HEADER: "true"}
response = await self.client.post(
"/", data=source, headers={blackd.DIFF_HEADER: "true"}