summaryrefslogtreecommitdiff
path: root/t/06attrib_val.t
diff options
context:
space:
mode:
Diffstat (limited to 't/06attrib_val.t')
-rw-r--r--t/06attrib_val.t25
1 files changed, 25 insertions, 0 deletions
diff --git a/t/06attrib_val.t b/t/06attrib_val.t
new file mode 100644
index 0000000..b659bf5
--- /dev/null
+++ b/t/06attrib_val.t
@@ -0,0 +1,25 @@
+use Test;
+BEGIN { plan tests => 5 }
+
+use XML::XPath;
+ok(1);
+
+my $xp = XML::XPath->new(ioref => *DATA);
+ok($xp);
+
+my @nodes;
+@nodes = $xp->findnodes('//BBB[@id = "b1"]');
+ok(@nodes, 1);
+
+@nodes = $xp->findnodes('//BBB[@name = "bbb"]');
+ok(@nodes, 1);
+
+@nodes = $xp->findnodes('//BBB[normalize-space(@name) = "bbb"]');
+ok(@nodes, 2);
+
+__DATA__
+<AAA>
+<BBB id='b1'/>
+<BBB name=' bbb '/>
+<BBB name='bbb'/>
+</AAA>