use super::RcDom;
use super::RcDomExt;
use super::parse_css_selector;
use super::Selectable;
use super::Minify;
#[test]
fn smoke()
{
let rc_dom = RcDom::from_file_path_verified_and_stripped_of_comments_and_processing_instructions_and_with_a_sane_doc_type("src/tests.html").expect("invalid HTML");
eprintln!("{}", rc_dom.debug_string());
let selector = parse_css_selector("body").unwrap();
assert!(!rc_dom.matches(&selector));
rc_dom.find_all_matching_child_nodes_depth_first_including_this_one(&selector, &mut |node|
{
eprintln!("{}", node.debug_string());
const SHORTCUT: bool = false;
SHORTCUT
});
}