()
| 174 | |
| 175 | #[test] |
| 176 | fn test_html_to_text_entities() { |
| 177 | let html = "foo & bar < baz > qux"; |
| 178 | let text = html_to_text(html); |
| 179 | assert!(text.contains("foo & bar < baz > qux")); |
| 180 | } |
| 181 | |
| 182 | #[test] |
| 183 | fn test_html_to_text_strips_script() { |
nothing calls this directly
no test coverage detected