mkirank has asked for the wisdom of the Perl Monks concerning the following question:
the $self->SUPER::link is returning a # . The cause seems to be something to do with Test::TAP::Model::Subtest but i am not sure . Any pointers on where the problem could be ?package My::Subtest; use base qw/Test::TAP::Model::Subtest::Visual/; sub link { my $self = shift; my $link = $self->SUPER::link; $link =~ s/\.t(?=#line|$)/.html/; File::Spec->catdir("t_index",$link); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Pugs Smoke test
by gaal (Parson) on Dec 21, 2006 at 18:22 UTC | |
by mkirank (Chaplain) on Dec 21, 2006 at 23:09 UTC |