This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Test::Harness 3.13
[perl5.git] / t / lib / MyGrammar.pm
CommitLineData
f7c69158
NC
1# subclass for testing customizing & subclassing
2
3package MyGrammar;
4
5use strict;
6use vars '@ISA';
7
8use MyCustom;
9use TAP::Parser::Grammar;
10
11@ISA = qw( TAP::Parser::Grammar MyCustom );
12
13sub _initialize {
14 my $self = shift;
15 $self->SUPER::_initialize(@_);
16 $main::INIT{ ref($self) }++;
17 $self->{initialized} = 1;
18 return $self;
19}
20
211;