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.
5 lines
416 B
5 lines
416 B
from pathlib import Path
|
|
from src.final_report_builder import FinalReportBuilder
|
|
from src.presentation_assets_builder import PresentationAssetsBuilder
|
|
def test_empty_assets_export(tmp_path:Path)->None:
|
|
b=PresentationAssetsBuilder();assets=b.build(FinalReportBuilder().build(tmp_path),tmp_path);paths=b.export(assets,tmp_path/"a.md",tmp_path/"a.csv");assert "因果関係" in paths[0].read_text(encoding="utf-8")
|
|
|