]>
git.madduck.net Git - etc/vim.git/blobdiff - tests/util.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:
import black
from black.debug import DebugVisitor
from black.mode import TargetVersion
import black
from black.debug import DebugVisitor
from black.mode import TargetVersion
-from black.output import err, out
+from black.output import diff, err, out
THIS_DIR = Path(__file__).parent
DATA_DIR = THIS_DIR / "data"
THIS_DIR = Path(__file__).parent
DATA_DIR = THIS_DIR / "data"
except Exception as ve:
err(str(ve))
except Exception as ve:
err(str(ve))
+ if actual != expected:
+ out(diff(expected, actual, "expected", "actual"))
+
assert actual == expected
assert actual == expected
_assert_format_equal(expected, actual)
_assert_format_equal(expected, actual)
+def all_data_cases(dir_name: str, data: bool = True) -> List[str]:
+ base_dir = DATA_DIR if data else PROJECT_ROOT
+ cases_dir = base_dir / dir_name
+ assert cases_dir.is_dir()
+ return [f"{dir_name}/{case_path.stem}" for case_path in cases_dir.iterdir()]
+
+
def read_data(name: str, data: bool = True) -> Tuple[str, str]:
"""read_data('test_name') -> 'input', 'output'"""
if not name.endswith((".py", ".pyi", ".out", ".diff")):
name += ".py"
base_dir = DATA_DIR if data else PROJECT_ROOT
def read_data(name: str, data: bool = True) -> Tuple[str, str]:
"""read_data('test_name') -> 'input', 'output'"""
if not name.endswith((".py", ".pyi", ".out", ".diff")):
name += ".py"
base_dir = DATA_DIR if data else PROJECT_ROOT
- return read_data_from_file(base_dir / name)
+ case_path = base_dir / name
+ assert case_path.is_file(), f"{case_path} is not a file."
+ return read_data_from_file(case_path)
def read_data_from_file(file_name: Path) -> Tuple[str, str]:
def read_data_from_file(file_name: Path) -> Tuple[str, str]: