|
From Test::Simple to Test::Extreme - Various Testing Domains
|
30
|
|
|
All These Modules Play Well Together
Most of the Test::* modules use a common backend
That means they all use a common counter
That means you can mix and match
use Test::More 'no_plan';
use Test::Data;
use Test::Exception;
ok(1+1);
blessed_ok($rocket);
dies_ok {die "!"};
You can build your own test module for your own problem space using Test::Builder
|
|