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/14axisancestor.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 t/14axisancestor.t (limited to 't/14axisancestor.t') diff --git a/t/14axisancestor.t b/t/14axisancestor.t new file mode 100644 index 0000000..c10e5b5 --- /dev/null +++ b/t/14axisancestor.t @@ -0,0 +1,22 @@ +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('/AAA/BBB/DDD/CCC/EEE/ancestor::*'); +ok(@nodes, 4); +ok($nodes[1]->getName, "BBB"); # test document order + +@nodes = $xp->findnodes('//FFF/ancestor::*'); +ok(@nodes, 5); + +__DATA__ + + + + -- cgit v1.2.1