Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
use strict;
use warnings;
package SmallTest;
require Exporter;
use vars qw( @ISA @EXPORT );
@ISA = qw( Exporter );
@EXPORT = qw( ok is_eq is_num );
use Test::Builder;
my $Test = Test::Builder->new;
sub ok
{
$Test->ok(@_);
}
sub is_eq
{
$Test->is_eq(@_);
}
sub is_num
{
$Test->is_num(@_);
}
sub getTest
{
return $Test;
}
1;