Didactopus/tests/test_scaffold_files.py

8 lines
257 B
Python

from pathlib import Path
def test_scaffold_files_exist():
assert Path("src/didactopus/api.py").exists()
assert Path("src/didactopus/repository.py").exists()
assert Path("webui/src/App.jsx").exists()
assert Path("webui/src/api.js").exists()