mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 06:50:53 +00:00
refactor(skill): add atoms and molecules directories
This commit is contained in:
parent
cc5fa0658f
commit
f9cc4ae8a9
4 changed files with 14 additions and 0 deletions
0
paperforge/skills/paperforge/atoms/.gitkeep
Normal file
0
paperforge/skills/paperforge/atoms/.gitkeep
Normal file
0
paperforge/skills/paperforge/molecules/.gitkeep
Normal file
0
paperforge/skills/paperforge/molecules/.gitkeep
Normal file
14
tests/test_skill_graph_layout.py
Normal file
14
tests/test_skill_graph_layout.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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()
|
||||
Loading…
Reference in a new issue