in reply to Test Or Die
use strict; use warnings; use Test::More tests => 2; use Fatal qw/ ok /; ok(1 == 2 , '1 is 2'); ok(1 == 1 , '1 is 1');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Test Or Die
by Bloodnok (Vicar) on May 14, 2009 at 16:35 UTC | |
by Arunbear (Prior) on May 14, 2009 at 16:54 UTC | |
by Bloodnok (Vicar) on May 14, 2009 at 18:46 UTC |