Acme-Metification
view release on metacpan or search on metacpan
t/01basic.t view on Meta::CPAN
use strict;
use warnings;
#use lib 'lib';
use Test::More tests => 3;
use Acme::Metification;
ok(1, "Module loaded.");
sub faculty {
my $no = shift;
my $fac = 1;
$fac *= ($no--);
return $fac if $no == 0;
t/02basic.t view on Meta::CPAN
use strict;
use warnings;
#use lib 'lib';
use Test::More tests => 3;
use Acme::Metification;
ok(1, "Module loaded.");
# Execute code from the pod docs:
ok(1, "Applied filter.");
meta 13, 13
( run in 0.301 second using v1.01-cache-2.11-cpan-87723dcf8b7 )