00basic.t
#!/usr/bin/perl -w
use strict;
use Test::More tests => 2;
BEGIN {
use_ok( 'My::Module' );
use_ok( 'My::Module::Extended' );
}
- Uses the Perl Test Harness
- Automatically includes the blib directories
- Can add 'use lib qw(./t ./t/lib);' if required
