summaryrefslogtreecommitdiff
path: root/t/remove.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2003-01-26 19:35:03 +0000
committer <>2015-02-23 10:18:26 +0000
commita2d12bc84fb2af87dd1c0c6e5bc854554902cd67 (patch)
tree7665979c7c281b21971de576d93246a022bff649 /t/remove.t
downloadperl-xml-xpath-master.tar.gz
Imported from /home/lorry/working-area/delta_perl-xml-xpath/XML-XPath-1.13.tar.gz.HEADXML-XPath-1.13master
Diffstat (limited to 't/remove.t')
-rw-r--r--t/remove.t44
1 files changed, 44 insertions, 0 deletions
diff --git a/t/remove.t b/t/remove.t
new file mode 100644
index 0000000..ac09453
--- /dev/null
+++ b/t/remove.t
@@ -0,0 +1,44 @@
+#!/usr/bin/perl
+
+use Test;
+BEGIN { plan tests => 7 }
+
+use XML::XPath;
+use XML::XPath::XMLParser;
+$XML::XPath::SafeMode = 1;
+
+ok(1);
+my $xp = XML::XPath->new(ioref => *DATA);
+ok($xp);
+
+my ($root) = $xp->findnodes('/');
+
+ok($root);
+
+($root) = $root->getChildNodes;
+my @nodes = $xp->findnodes('//Cart',$root);
+
+ok(@nodes, 2);
+
+$root->removeChild($nodes[0]);
+
+@nodes = $xp->findnodes('//Cart', $root);
+ok(@nodes, 1);
+
+my $cart = $nodes[0];
+
+@nodes = $xp->findnodes('//Cart/@*', $root);
+ok(@nodes, 2);
+
+$cart->removeAttribute('crap');
+@nodes = $xp->findnodes('//Cart/@*', $root);
+
+ok(@nodes, 1);
+
+__DATA__
+<Shop id="mod3838" hello="you">
+<Cart id="1" crap="crap">
+ <Item id="11" crap="crap"/>
+</Cart>
+<Cart id="2" crap="crap"/>
+</Shop>