9 lines
314 B
Python
9 lines
314 B
Python
from app.coverage import get_coverage_report
|
|
|
|
|
|
def test_coverage_report_maps_user_scripts_and_builds_tasks():
|
|
report = get_coverage_report()
|
|
assert report["mapped_user_scripts"] == report["user_scripts_total"]
|
|
assert report["unmapped_user_scripts"] == []
|
|
assert report["task_build_passed"] is True
|