(tmp_path: Path)
| 142 | |
| 143 | |
| 144 | def test_external_script_blocks(tmp_path: Path): |
| 145 | html = GOOD_DECK.replace( |
| 146 | "</head>", |
| 147 | '<script src="https://cdn.example/x.js"></script></head>', |
| 148 | ) |
| 149 | result = validate_deck(_write(tmp_path, html)) |
| 150 | assert any("not self-contained" in e for e in result.errors) |
| 151 | |
| 152 | |
| 153 | def test_external_img_blocks(tmp_path: Path): |
nothing calls this directly
no test coverage detected