(self)
| 41 | |
| 42 | @pytest.fixture |
| 43 | def delete_fixture(self): |
| 44 | latent_styles = element("w:latentStyles/w:lsdException{w:name=Foo}") |
| 45 | latent_style = _LatentStyle(latent_styles[0]) |
| 46 | expected_xml = xml("w:latentStyles") |
| 47 | return latent_style, latent_styles, expected_xml |
| 48 | |
| 49 | @pytest.fixture( |
| 50 | params=[ |
nothing calls this directly
no test coverage detected