Singleton subtest fix

2009-07-05 Thread Ovid
Hi all, I've altered Test::Builder to handle the cases where people are using the TB singleton at the top of their test files. You can get a copy at http://github.com/Ovid/test-more/tree/master if you want to test it. Cheers, Ovid -- Buy the book -

Re: Singleton subtest fix

2009-07-05 Thread Michael G Schwern
Ovid wrote: I've altered Test::Builder to handle the cases where people are using the TB singleton at the top of their test files. You can get a copy at http://github.com/Ovid/test-more/tree/master if you want to test it. I've merged it into schwern/master. This is my first time maintaining

Test module for tests in Perl module distro

2009-07-05 Thread Buddy Burden
Guys, Let's say I have some common functions that I want available to all my .t files. So I've created a module that all the .t files can include. But where do I put it? I don't want to put it in lib/ because I don't want it to get installed, right? But when I put it in t/, make test can't

Re: Test module for tests in Perl module distro

2009-07-05 Thread David Golden
On Sun, Jul 5, 2009 at 9:40 PM, Buddy Burdenbarefootco...@gmail.com wrote: Let's say I have some common functions that I want available to all my .t files.  So I've created a module that all the .t files can include.  But where do I put it?  I don't want to put it in lib/ because I don't want