()
| 194 | |
| 195 | #[test] |
| 196 | fn extra_css_file_not_found() { |
| 197 | css_inline() |
| 198 | .arg("tests/example.html") |
| 199 | .arg("--extra-css-file=tests/nonexistent.css") |
| 200 | .assert() |
| 201 | .failure() |
| 202 | .stderr( |
| 203 | "Status: ERROR\n\ |
| 204 | Details: Failed to read CSS file 'tests/nonexistent.css': No such file or directory (os error 2)\n", |
| 205 | ); |
| 206 | } |
| 207 | |
| 208 | #[test] |
| 209 | fn extra_css() { |
nothing calls this directly
no test coverage detected