DEBSOURCES
Skip Quicknav
sources / perl / 5.32.1-4%2Bdeb11u3 / cpan / Test-Simple / t / lib / MyTest.pm
123456789101112131415
use strict; use warnings; package MyTest; use Test::Builder; my $Test = Test::Builder->new; sub ok { $Test->ok(@_); } 1;