summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/MyTest.pm
blob: e8ad8a3e5311312ec6f4b8033a8fb0461c5dccc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

package MyTest;

use Test::Builder;

my $Test = Test::Builder->new;

sub ok
{
	$Test->ok(@_);
}

1;