Hi folks,

Is this a bug?  In the default run() implementation for
Test::Unit::Decorator, I'm pretty sure the last line should be
$self->basic_run($result) -- the test object doesn't have a basic_run
method.

Usually run() will be overridden, but this broke a partial test I was
trying.

sub run {
    my $self = shift;
    my ($result) = @_;
    $self->{_fTest}->basic_run($result);
}

Thanks,
Matthias




_______________________________________________
Perlunit-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/perlunit-devel

Reply via email to