mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
14 lines
452 B
Python
14 lines
452 B
Python
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()
|