rustc/vendor/html_parser-0.7.0/tests/comments.rs
2024-10-21 11:08:01 +02:00

18 lines
450 B
Rust

use html_parser::{Dom, Result};
use insta::assert_json_snapshot;
#[test]
fn it_can_parse_document_with_just_one_comment() -> Result<()> {
let html = "<!-- hello !\"#/()= -->";
let ast = Dom::parse(html)?;
assert_json_snapshot!(ast);
Ok(())
}
#[test]
fn it_can_parse_document_with_just_comments() -> Result<()> {
let html = "<!--x--><!--y--><!--z-->";
let ast = Dom::parse(html)?;
assert_json_snapshot!(ast);
Ok(())
}