11 lines
364 B
Python
11 lines
364 B
Python
"""Regression coverage for application dependency module imports."""
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def test_dependency_module_compiles():
|
|
"""Database initialization dependencies remain valid Python syntax."""
|
|
module_path = Path(__file__).parents[1] / "app" / "core" / "deps.py"
|
|
|
|
compile(module_path.read_text(encoding="utf-8"), str(module_path), "exec")
|