This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to include latest Test::Builder alpha
[perl5.git] / cpan / Test-Simple / t / lib / MyTest.pm
1 use strict;
2 use warnings;
3
4 package MyTest;
5
6 use Test::Builder;
7
8 my $Test = Test::Builder->new;
9
10 sub ok
11 {
12         $Test->ok(@_);
13 }
14
15 1;