lllin000_PaperForge/tests/test_skill_graph_layout.py

16 lines
453 B
Python
Raw Normal View History

from __future__ import annotations
from pathlib import Path
REPO_ROOT = Path(__file__).resolve().parent.parent
SKILL_ROOT = REPO_ROOT / "paperforge" / "skills" / "paperforge"
def test_skill_uses_atoms_and_molecules_directories() -> None:
assert (SKILL_ROOT / "atoms").is_dir()
assert (SKILL_ROOT / "molecules").is_dir()
def test_chart_reading_target_directory_exists() -> None:
assert (SKILL_ROOT / "atoms" / "chart-reading").is_dir()