summaryrefslogtreecommitdiff
path: root/t/17axisfollowing.t
diff options
context:
space:
mode:
Diffstat (limited to 't/17axisfollowing.t')
-rw-r--r--t/17axisfollowing.t45
1 files changed, 45 insertions, 0 deletions
diff --git a/t/17axisfollowing.t b/t/17axisfollowing.t
new file mode 100644
index 0000000..e85322c
--- /dev/null
+++ b/t/17axisfollowing.t
@@ -0,0 +1,45 @@
+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('/AAA/XXX/following::*');
+ok(@nodes, 2);
+
+@nodes = $xp->findnodes('//ZZZ/following::*');
+ok(@nodes, 12);
+
+__DATA__
+<AAA>
+<BBB>
+ <CCC/>
+ <ZZZ>
+ <DDD/>
+ <DDD>
+ <EEE/>
+ </DDD>
+ </ZZZ>
+ <FFF>
+ <GGG/>
+ </FFF>
+</BBB>
+<XXX>
+ <DDD>
+ <EEE/>
+ <DDD/>
+ <CCC/>
+ <FFF/>
+ <FFF>
+ <GGG/>
+ </FFF>
+ </DDD>
+</XXX>
+<CCC>
+ <DDD/>
+</CCC>
+</AAA>