~ubuntu-branches/ubuntu/saucy/libxml-sax-perl/saucy

« back to all changes in this revision

Viewing changes to t/16large.t

  • Committer: Bazaar Package Importer
  • Author(s): Florian Schlichting, Florian Schlichting, Ansgar Burchardt
  • Date: 2011-09-14 14:49:55 UTC
  • mfrom: (1.1.6 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110914144955-bcezcwiqn1sx82sm
Tags: 0.99+dfsg-1
[ Florian Schlichting ]
* Imported Upstream version 0.99
* Update d/watch.
* Switch to source format "3.0 (quilt)".
* Bump compatibility level to 8.
* Refresh d/copyright.
* Bump Standards-Version to 3.9.2 (no further changes).
* (Build-)Depend on libxml-sax-base-perl.
* Add myself to Uploaders.
* Remove copyright statement for removed XML::SAX::Base.

[ Ansgar Burchardt ]
* Update my email address.
* debian/control: Convert Vcs-* fields to Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use Test;
 
1
use Test::More;
2
2
BEGIN { plan tests => 3 }
3
3
use XML::SAX::PurePerl;
4
4
use XML::SAX::PurePerl::DebugHandler;
9
9
my $parser = XML::SAX::PurePerl->new(Handler => $handler);
10
10
ok($parser);
11
11
 
 
12
SKIP: {
 
13
skip "Non-free test input is not present in the Debian version", 1;
12
14
my $time = time;
13
15
$parser->parse_uri("testfiles/xmltest.xml");
14
16
warn("parsed ", -s "testfiles/xmltest.xml", " bytes in ", time - $time, " seconds\n");
15
17
ok(1);
16
 
 
 
18
} # SKIP