summaryrefslogtreecommitdiff
path: root/t/11axischild.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2003-01-26 19:35:03 +0000
committer <>2015-02-23 10:18:26 +0000
commita2d12bc84fb2af87dd1c0c6e5bc854554902cd67 (patch)
tree7665979c7c281b21971de576d93246a022bff649 /t/11axischild.t
downloadperl-xml-xpath-a2d12bc84fb2af87dd1c0c6e5bc854554902cd67.tar.gz
Imported from /home/lorry/working-area/delta_perl-xml-xpath/XML-XPath-1.13.tar.gz.HEADXML-XPath-1.13master
Diffstat (limited to 't/11axischild.t')
-rw-r--r--t/11axischild.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/11axischild.t b/t/11axischild.t
new file mode 100644
index 0000000..58058a1
--- /dev/null
+++ b/t/11axischild.t
@@ -0,0 +1,18 @@
+use Test;
+BEGIN { plan tests => 6 }
+
+use XML::XPath::Parser;
+
+ok(1);
+
+my $xp = XML::XPath::Parser->new();
+ok($xp);
+
+ok($xp->parse('/AAA')->as_string, "(/child::AAA)");
+
+ok($xp->parse('/AAA/BBB')->as_string, "(/child::AAA/child::BBB)");
+
+ok($xp->parse('/child::AAA/child::BBB')->as_string,
+ "(/child::AAA/child::BBB)");
+
+ok($xp->parse('/child::AAA/BBB')->as_string, "(/child::AAA/child::BBB)");