langchain/libs/cli/tests/unit_tests/migrate/generate/test_utils.py
Mason Daugherty e7eac27241
ruff: more rules across the board & fixes (#31898)
* standardizes ruff dep version across all `pyproject.toml` files
* cli: ruff rules and corrections
* langchain: rules and corrections
2025-07-07 17:48:01 -04:00

8 lines
214 B
Python

from langchain_cli.namespaces.migrate.generate.utils import PKGS_ROOT
def test_root() -> None:
if PKGS_ROOT.name != "libs":
msg = "Expected PKGS_ROOT.name to be 'libs'."
raise ValueError(msg)