summaryrefslogtreecommitdiff
path: root/t/04pos.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04pos.t')
-rw-r--r--t/04pos.t22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/04pos.t b/t/04pos.t
new file mode 100644
index 0000000..8552ab2
--- /dev/null
+++ b/t/04pos.t
@@ -0,0 +1,22 @@
+use Test;
+BEGIN { plan tests => 4 }
+
+use XML::XPath;
+ok(1);
+
+my $xp = XML::XPath->new(ioref => *DATA);
+ok($xp);
+
+my $first = $xp->findvalue('/AAA/BBB[1]/@id');
+ok($first, "first");
+
+my $last = $xp->findvalue('/AAA/BBB[last()]/@id');
+ok($last, "last");
+
+__DATA__
+<AAA>
+<BBB id="first"/>
+<BBB/>
+<BBB/>
+<BBB id="last"/>
+</AAA>