> On Wed, 08 Nov 2006 18:13:26 +, Florian Scharinger <[EMAIL
> PROTECTED]> said:
> Hi perl-qa,
> I'm trying to download missing Perl test modules automatically during
> build time of my project, by using:
> use CPAN;
> CPAN::Shell->install("Test::Exception");
> Test::E
On Wed, Nov 08, 2006 at 06:13:26PM +, Florian Scharinger wrote:
> Hi perl-qa,
>
> I'm trying to download missing Perl test modules automatically during
> build time of my project, by using:
>
> use CPAN;
> CPAN::Shell->install("Test::Exception");
>
> Test::Exception has dependencies, whic
Hi perl-qa,
I'm trying to download missing Perl test modules automatically during
build time of my project, by using:
use CPAN;
CPAN::Shell->install("Test::Exception");
Test::Exception has dependencies, which the CPAN shell detects correctly:
Unsatisfied dependencies detected during
On Nov 7, 2006, at 11:37 PM, Adam Kennedy wrote:
I'm not sure you can reliably test that though, not to 100% anyway,
given the problem of implicit params.
is( foo $bar, $baz, $expected );
which means
is( foo($bar, $baz), $expected );
Yes, his specific case is ok, but I think you need to be
On Nov 8, 2006, at 7:35 AM, Christopher H. Laco wrote:
I gave the latest PPI + Perl::Critic SVN a shot late last night. That
problem is indeed fixed for me, but another on cropped up with
UseStrict, even through I am, and it only happens in 2 of 30 files.
As soon as I get ouf of my meetings thi
Chris Dolan wrote:
> On Nov 7, 2006, at 6:15 PM, Christopher H. Laco wrote:
>
>> I just wanted to get some thoughts on this before I filed a bug report
>> with either PPI or Perl::Critic:
>>
>> I'm going through and testing all of my *.t files for RequireTestLabels.
>> I was humming right along wh