17 lines
519 B
Python
17 lines
519 B
Python
from pathlib import Path
|
|
|
|
from review_agent.regulatory_info_package.services.instruction_extract import parse_instruction_docx
|
|
|
|
|
|
def test_parse_instruction_docx_extracts_paragraphs_and_tables():
|
|
path = Path("docs/0.原始材料/目标产品说明书.docx")
|
|
|
|
result = parse_instruction_docx(path)
|
|
|
|
assert result.source_file_name == "目标产品说明书.docx"
|
|
assert result.paragraphs
|
|
assert isinstance(result.sections, dict)
|
|
assert isinstance(result.tables, list)
|
|
assert result.front_text
|
|
|