11 lines
313 B
Python
11 lines
313 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_skill_files_exist() -> None:
|
|
assert Path("skills/zotero-citation-recommender/SKILL.md").is_file()
|
|
assert Path("skills/zotero-citation-planner/SKILL.md").is_file()
|
|
|
|
|
|
def test_bridge_manifest_exists() -> None:
|
|
assert Path("zotero-bridge/src/manifest.json").is_file()
|