Subject: | 'self' fails inside of eval {} |
If you update 'set' in the 'Counter.pm' test module, a test will fail:
sub set {
my ($v) = args;
eval {
self->{v} = $v;
};
}
The issue seems to be that is 'self' is not defined inside the eval
block, although it is defined just before the eval block is entered.
Mark