blob: a08bbf583af06270c5bf5cb7c6220e45e6d473aa [file] [log] [blame] [edit]
use html_parser::{Dom, Result};
use insta::assert_json_snapshot;
#[test]
fn it_can_parse_empty_document() -> Result<()> {
let html = "";
let dom = Dom::parse(html)?;
assert_json_snapshot!(dom);
Ok(())
}