(tmp_path: Path, html: str)
| 41 | |
| 42 | |
| 43 | def _write(tmp_path: Path, html: str) -> Path: |
| 44 | deck_dir = tmp_path / "deck" |
| 45 | deck_dir.mkdir() |
| 46 | (deck_dir / "index.html").write_text(html, encoding="utf-8") |
| 47 | return deck_dir |
| 48 | |
| 49 | |
| 50 | def test_good_deck_passes(tmp_path: Path): |
no outgoing calls
no test coverage detected