It looks like something may be objecting to my phrasing eval { something(); } skip $reason, $count if $@;. However it doesn't seem to be a single version of Perl or platform.
I think I'm going to rewrite the tests to use SKIP blocks, but I'm curious to know what's going on here - it certainly looks like a bug in something. Has anyone else encountered this?
skip_all (Score:1)
You either need the block or to pass
skip_all => $reasontoplan(). Test::More relies on a particularity of Perl 5 control flow to stop executing the block in which you callskip(). If you're not in a block, Perl gets all wobbly.Re: (Score:1)
Interesting (Score:1)