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

« back to all changes in this revision

Viewing changes to t/lib/TestParserPackage.pm

  • Committer: Bazaar Package Importer
  • Author(s): Niko Tyni
  • Date: 2008-04-04 16:00:12 UTC
  • mfrom: (1.1.4 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080404160012-2kh7ygoy3a8l1s9g
Tags: 0.16+dfsg-3
README.Debian: replace a broken link to the CPAN FAQ entry about
uninstalling CPAN modules with its intended content. (Closes: #469958)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package TestParserPackage;
2
 
use XML::SAX::Base;
3
 
@ISA = qw(XML::SAX::Base);
4
 
sub new { 
5
 
    return bless {}, shift
6
 
}
7
 
sub supported_features {
8
 
    return ('http://axkit.org/sax/frobnosticating');
9
 
}
10
 
1;
11