You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
333 B
4 lines
333 B
from pathlib import Path
|
|
from src.final_report_builder import FinalReportBuilder
|
|
def test_empty_final_report_exports(tmp_path:Path)->None:
|
|
b=FinalReportBuilder();r=b.build(tmp_path);assert "因果関係" in r.limitations;paths=b.export(r,tmp_path/"r.md",tmp_path/"r.csv");assert paths[1].read_bytes().startswith(b"\xef\xbb\xbf")
|
|
|