ANNOUNCE Test::Fork

2008-10-14 Thread Michael G Schwern
http://schwern.org/src/Test-Fork-0.02.tar.gz On its way to CPAN now. I just cleaned up and released a stable version of Test::Fork which is a helper module for code that forks. It does all the Test::Builder voodoo necessary to have tests happening in parallel on a single TAP stream. NAME

[ANNOUNCE] Test::Fork 0.01_01

2007-11-30 Thread Michael G Schwern
As threatened, here's Test::Fork for easier writing of forked tests. http://pobox.com/~schwern/src/Test-Fork-0.01_01.tar.gz use Test::More tests = 4; use Test::Fork; fork_ok(2, sub{ pass(Child); pass(Child again); });