()
| 167 | |
| 168 | #[test] |
| 169 | fn wrong_base_url() { |
| 170 | css_inline() |
| 171 | .arg("--base-url=https://:::::") |
| 172 | .write_stdin(r#"<html><head><link href="external.css" rel="stylesheet"></head><body><h1>Hello world!</h1></body></html>"#) |
| 173 | .assert() |
| 174 | .failure() |
| 175 | .stderr("Status: ERROR\nDetails: empty host\n"); |
| 176 | } |
| 177 | |
| 178 | #[test] |
| 179 | fn extra_css_file() { |
nothing calls this directly
no test coverage detected