chadpath 0.3.2

XPath 1.0 / XSLT engine — a fork of xrust (Apache-2.0) with XPath positional-predicate correctness fixes and parser performance improvements. Used by chadselect.
Documentation
// Smite tests for pattern module

use chadpath::trees::smite::RNode;

mod avt;
mod smite;

#[test]
fn avt_empty() {
    avt::avt_empty::<RNode>().expect("test failed")
}
#[test]
fn avt_content() {
    avt::content::<RNode, _>(smite::make_empty_doc).expect("test failed")
}
#[test]
fn avt_var_ref() {
    avt::var_ref::<RNode, _>(smite::make_empty_doc).expect("test failed")
}