(tmp_path: Path)
| 133 | |
| 134 | |
| 135 | def test_external_link_blocks(tmp_path: Path): |
| 136 | html = GOOD_DECK.replace( |
| 137 | "</head>", |
| 138 | '<link rel="stylesheet" href="https://cdn.example/x.css"></head>', |
| 139 | ) |
| 140 | result = validate_deck(_write(tmp_path, html)) |
| 141 | assert any("not self-contained" in e for e in result.errors) |
| 142 | |
| 143 | |
| 144 | def test_external_script_blocks(tmp_path: Path): |
nothing calls this directly
no test coverage detected