From a2d12bc84fb2af87dd1c0c6e5bc854554902cd67 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Sun, 26 Jan 2003 19:35:03 +0000 Subject: Imported from /home/lorry/working-area/delta_perl-xml-xpath/XML-XPath-1.13.tar.gz. --- t/04pos.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 t/04pos.t (limited to 't/04pos.t') 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__ + + + + + + -- cgit v1.2.1