We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c5fc5 commit 8311eefCopy full SHA for 8311eef
Cargo.toml
@@ -201,6 +201,11 @@ name = "encodings"
201
required-features = ["encoding"]
202
path = "tests/encodings.rs"
203
204
+[[test]]
205
+name = "html"
206
+required-features = ["escape-html"]
207
+path = "tests/html.rs"
208
+
209
[[test]]
210
name = "serde_roundtrip"
211
required-features = ["serialize"]
tests/xmlrs_reader_tests.rs renamed to tests/html.rs
@@ -6,7 +6,6 @@ use quick_xml::name::{QName, ResolveResult};
6
use quick_xml::reader::NsReader;
7
use std::str::from_utf8;
8
9
-#[cfg(feature = "escape-html")]
10
#[test]
11
fn html5() {
12
test(
@@ -16,7 +15,6 @@ fn html5() {
16
15
);
17
}
18
19
20
21
fn escaped_characters_html() {
22
0 commit comments