Re: [Perlunit-devel] Possible bug in Test::Unit::Decorator
Status: Beta
Brought to you by:
mca1001
|
From: Adam S. <ad...@sp...> - 2002-06-20 15:08:56
|
Matthias Ferber (mf...@hi...) wrote:
> 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);
> }
Yes, I think you're right. I've committed a fix. Apologies for
taking so damn long!
Adam
|