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/03star.t | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 t/03star.t (limited to 't/03star.t') diff --git a/t/03star.t b/t/03star.t new file mode 100644 index 0000000..8fc6a4e --- /dev/null +++ b/t/03star.t @@ -0,0 +1,26 @@ +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/CCC/DDD/*'); +ok(@nodes, 4); + +@nodes = $xp->findnodes('/*/*/*/BBB'); +ok(@nodes, 5); + +@nodes = $xp->findnodes('//*'); +ok(@nodes, 17); + +__DATA__ + + + + + -- cgit v1.2.1