Re: CPAN::Shell->install() downloads dependencies, but doesn't add them to @INC for tests

2006-11-08 Thread Andreas J. Koenig
> 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

Re: CPAN::Shell->install() downloads dependencies, but doesn't add them to @INC for tests

2006-11-08 Thread Steve Peters
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

CPAN::Shell->install() downloads dependencies, but doesn't add them to @INC for tests

2006-11-08 Thread Florian Scharinger
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

Re: P::C or PPI bug?

2006-11-08 Thread Chris Dolan
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

Re: P::C or PPI bug?

2006-11-08 Thread Chris Dolan
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

Re: P::C or PPI bug?

2006-11-08 Thread Christopher H. Laco
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