(
tmp_path: Path, format: Textile, content: str, expected: Metadata
)
| 158 | ], |
| 159 | ) |
| 160 | def test_get_metadata( |
| 161 | tmp_path: Path, format: Textile, content: str, expected: Metadata |
| 162 | ): |
| 163 | changelog = tmp_path / format.default_changelog_file |
| 164 | changelog.write_text(content) |
| 165 | |
| 166 | assert format.get_metadata(str(changelog)) == expected |
| 167 | |
| 168 | |
| 169 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…