9 lines
325 B
Python
9 lines
325 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("src/didactopus/worker.py").exists()
|
|
assert Path("src/didactopus/render_bundle.py").exists()
|
|
assert Path("webui/src/App.jsx").exists()
|