The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# subclass for testing customizing & subclassing

package MyResult;

use strict;
use vars '@ISA';

use MyCustom;
use TAP::Parser::Result;

@ISA = qw( TAP::Parser::Result MyCustom );

sub _initialize {
    my $self = shift;
    $self->SUPER::_initialize(@_);
    $main::INIT{ ref($self) }++;
    $self->{initialized} = 1;
    return $self;
}

1;