(self, package_: Mock)
| 165 | |
| 166 | @pytest.fixture |
| 167 | def comments(self, package_: Mock) -> Comments: |
| 168 | comments_elm = cast(CT_Comments, element("w:comments")) |
| 169 | comments_part = CommentsPart( |
| 170 | PackURI("/word/comments.xml"), |
| 171 | CT.WML_COMMENTS, |
| 172 | comments_elm, |
| 173 | package_, |
| 174 | ) |
| 175 | return Comments(comments_elm, comments_part) |
| 176 | |
| 177 | @pytest.fixture |
| 178 | def package_(self, request: FixtureRequest): |
nothing calls this directly
no test coverage detected