squid-main-space / tests /test_reference_cleanup_v468.py
Zin299's picture
Deploy v4.6.15 product finish system health
1d46957
Raw
History Blame Contribute Delete
580 Bytes
from pathlib import Path
ROOT=Path(__file__).resolve().parents[1]
def test_version():
assert (ROOT/"VERSION").read_text(encoding="utf-8").strip()=="4.6.15"
def test_reference_and_reproducibility_are_auxiliary():
py=(ROOT/"routes"/"datasets.py").read_text(encoding="utf-8")
for term in ('"reference/"','"reproducibility/"','"source_registry"','"taxonomy"','"crosswalk"','"build_provenance"'):
assert term in py
def test_paper_supplement_path_is_auxiliary():
py=(ROOT/"routes"/"datasets.py").read_text(encoding="utf-8")
assert '"论文补充/"' in py