[Perlunit-devel] Possible bug in Test::Unit::Decorator
Status: Beta
Brought to you by:
mca1001
From: Matthias F. <mf...@hi...> - 2002-03-27 23:45:28
|
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 |