示例大纲数据
()
| 47 | |
| 48 | @pytest.fixture |
| 49 | def sample_outline(): |
| 50 | """示例大纲数据""" |
| 51 | return { |
| 52 | "raw": "这是原始大纲文本", |
| 53 | "pages": [ |
| 54 | {"index": 0, "type": "cover", "content": "封面:秋季穿搭指南"}, |
| 55 | {"index": 1, "type": "content", "content": "内容1:基础款搭配"}, |
| 56 | {"index": 2, "type": "summary", "content": "总结:穿搭要点"} |
| 57 | ] |
| 58 | } |
| 59 | |
| 60 | |
| 61 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected