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/13axisparent.t | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 t/13axisparent.t (limited to 't/13axisparent.t') diff --git a/t/13axisparent.t b/t/13axisparent.t new file mode 100644 index 0000000..21d7706 --- /dev/null +++ b/t/13axisparent.t @@ -0,0 +1,19 @@ +use Test; +BEGIN { plan tests => 4 } + +use XML::XPath; +ok(1); + +my $xp = XML::XPath->new(ioref => *DATA); +ok($xp); + +my @nodes; +@nodes = $xp->findnodes('//DDD/parent::*'); +ok(@nodes, 4); +ok($nodes[3]->getName, "EEE"); + +__DATA__ + + + + -- cgit v1.2.1