in reply to Devel::Cover eating caller() information
toeval { throw TestCaller }; isa_ok($@, 'TestCaller'); is_deeply($@->...
And see if that makes any difference at all? Just a thought. Still, you ideally wouldn't want Devel::Cover to alter your program in any way.eval { throw TestCaller }; my $error = $@; isa_ok($error, 'TestCaller'); is_deeply($error->...
------------ :Wq Not an editor command: Wq
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Devel::Cover eating caller() information
by stvn (Monsignor) on Sep 10, 2004 at 21:11 UTC |