7 lines
248 B
Python
7 lines
248 B
Python
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
def test_project_files_exist():
|
||
|
|
root = Path(__file__).resolve().parents[1]
|
||
|
|
assert (root / "app" / "main.py").exists()
|
||
|
|
assert (root / "pyproject.toml").exists()
|
||
|
|
assert (root / "docker-compose.yml").exists()
|