MooX-CalcTime
view release on metacpan or search on metacpan
t/90-moox-calctime.t view on Meta::CPAN
use Modern::Perl;
use Test::More;
my $module = 'MooX::CalcTime';
BEGIN {
$module = 'MooX::CalcTime';
use_ok($module);
}
can_ok($module, "_time_start");
my @methods = qw/get_run_second get_runtime print_runtime/;
for my $method (@methods) {
can_ok($module, $method);
}
done_testing;
( run in 1.290 second using v1.01-cache-2.11-cpan-364913b4093 )