use std::fs::read_to_string;
use html_filter::*;
use super::test_maker;
#[test]
fn index() {
let content = read_to_string("tests/data/index.html").unwrap();
let tree = Html::parse(&content).unwrap_or_else(|err| panic!("{err}"));
test_maker("full", &content, tree, "");
}