()
| 1029 | |
| 1030 | #[test] |
| 1031 | fn use_builder() { |
| 1032 | let url = Url::parse("https://api.example.com").unwrap(); |
| 1033 | let _ = CSSInliner::options() |
| 1034 | .keep_style_tags(true) |
| 1035 | .base_url(Some(url)) |
| 1036 | .load_remote_stylesheets(false) |
| 1037 | .extra_css(Some("h1 {color: green}".into())) |
| 1038 | .build(); |
| 1039 | } |
| 1040 | |
| 1041 | #[test] |
| 1042 | fn inline_to() { |
nothing calls this directly
no test coverage detected