undeepend/tests/xml/dom_parser_test.rs
2025-07-23 22:48:18 +02:00

8 lines
No EOL
237 B
Rust

use undeepend::xml::dom_parser::get_document;
#[test]
fn test_dom_parser() {
let test_xml = include_str!("../pom/resources/pom.xml");
let doc = get_document(test_xml).expect("failed to get document");
println!("{:?}",doc);
}