27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
from pathlib import Path
|
|
|
|
|
|
REPORT = Path("reports/property/lab-006-septic-research.md")
|
|
TEMPLATE = Path("reports/property/lab-006-call-log-and-quote-template.md")
|
|
|
|
|
|
def test_lab_006_report_exists_with_official_findings():
|
|
assert REPORT.exists(), "expected septic research report to exist"
|
|
content = REPORT.read_text()
|
|
assert "LAB-006 Septic Research" in content
|
|
assert "NHDES Septic Systems" in content
|
|
assert "Applications for individual sewage disposal systems or septic systems must be prepared by a permitted designer" in content
|
|
assert "With the exception for homeowners installing for their primary domicile" in content
|
|
assert "603-271-3501" in content
|
|
assert "https://www4.des.state.nh.us/SSBOneStop/" in content
|
|
|
|
|
|
def test_lab_006_template_exists_with_call_and_quote_sections():
|
|
assert TEMPLATE.exists(), "expected call/quote template to exist"
|
|
content = TEMPLATE.read_text()
|
|
assert "County / State Call Log" in content
|
|
assert "Quote Tracker" in content
|
|
assert "Professional install" in content
|
|
assert "Friend-with-excavator" in content
|
|
assert "Materials-only" in content
|