I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-06-15 02:21:02.743928-07 by adrianh in response to 13350
Re: No plan before startup tests?
Hi, Could you give a brief code example of your failure case? I've just tried this with 0.36
use strict; use warnings; { package Test::Foo; use parent qw( Test::Class ); use Test::More; sub setup : Test(setup => 1) { pass("setup"); } sub test :Test { pass(); } } Test::Class->runtests();
and got
1..2 ok 1 - setup ok 2 - test
so it may have been fixed and not documented - if so apologies.
Direct Responses: 13354 | 13367 | Write a response