示例页面数据
()
| 36 | |
| 37 | @pytest.fixture |
| 38 | def sample_pages(): |
| 39 | """示例页面数据""" |
| 40 | return [ |
| 41 | {"index": 0, "type": "cover", "content": "测试封面内容"}, |
| 42 | {"index": 1, "type": "content", "content": "测试内容页1"}, |
| 43 | {"index": 2, "type": "content", "content": "测试内容页2"}, |
| 44 | {"index": 3, "type": "summary", "content": "测试总结页"} |
| 45 | ] |
| 46 | |
| 47 | |
| 48 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected