summaryrefslogtreecommitdiff
path: root/t/file.t
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2007-11-20 14:28:05 +0000
committer <>2013-08-08 17:01:04 +0000
commitc97631728ce7d6d3f4692a56c3cda7476b42a968 (patch)
tree8c00053771ccae41a737eecd072dbb3cd8b06fdd /t/file.t
downloadperl-xml-parser-master.tar.gz
Imported from /home/lorry/working-area/delta_perl-xml-parser/XML-Parser-2.36.tar.gz.HEADXML-Parser-2.36master
Diffstat (limited to 't/file.t')
-rw-r--r--t/file.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/file.t b/t/file.t
new file mode 100644
index 0000000..d7c4f53
--- /dev/null
+++ b/t/file.t
@@ -0,0 +1,15 @@
+BEGIN {print "1..2\n";}
+END {print "not ok 1\n" unless $loaded;}
+use XML::Parser;
+$loaded = 1;
+print "ok 1\n";
+
+my $count = 0;
+
+$parser = new XML::Parser(ErrorContext => 2);
+$parser->setHandlers(Comment => sub {$count++;});
+
+$parser->parsefile('samples/REC-xml-19980210.xml');
+
+print "not " unless $count == 37;
+print "ok 2\n";