add a test for an issue with namespace propagation

This commit is contained in:
lumi 2017-02-25 00:10:18 +01:00
parent 0a45a6993e
commit 9a00c998ae

View file

@ -672,4 +672,15 @@ mod tests {
assert_eq!(root.get_child("child", "root_ns").unwrap().attr("c"), Some("d"));
assert_eq!(root.get_child("child", "child_ns").unwrap().attr("d"), Some("e"));
}
#[test]
fn namespace_propagation_works() {
let mut root = Element::builder("root").ns("root_ns").build();
let mut child = Element::bare("child");
let grandchild = Element::bare("grandchild");
child.append_child(grandchild);
root.append_child(child);
assert_eq!(root.get_child("child", "root_ns").unwrap().ns(), root.ns());
assert_eq!(root.get_child("grandchild", "root_ns").unwrap().ns(), root.ns());
}
}