Build a minimal RawManpage for test use.
()
| 10 | |
| 11 | |
| 12 | def _make_raw(): |
| 13 | """Build a minimal RawManpage for test use.""" |
| 14 | return RawManpage( |
| 15 | source_text="test manpage content", |
| 16 | generated_at=datetime.datetime(2025, 1, 1, tzinfo=datetime.timezone.utc), |
| 17 | generator="test", |
| 18 | ) |
| 19 | |
| 20 | |
| 21 | @pytest.fixture |
no test coverage detected