- or download this
Some-Module/
Changes
...
README
t/
*.t test files here
- or download this
#!perl -T
...
BEGIN { use_ok('Some::Module') }
diag "Testing Some::Module $Some::Module::VERSION";
- or download this
#!perl -T
...
is($eval_ok, 1, 'Test eval OK');
is(defined $sm, 1, 'Test Some::Module object defined');
isa_ok($sm, 'Some::Module');
- or download this
#!perl -T
...
my @args = (...);
is($sm->meth(@args), ...
}
- or download this
#!perl -T
...
};
all_pod_files_ok();
- or download this
#!perl -T
...
};
all_pod_coverage_ok();
- or download this
#!perl
...
is_deeply([manicheck()], [], 'Check files in "MANIFEST" exist.');
is_deeply([filecheck()], [], 'Check for files not in "MANIFEST" or "MA
+NIFEST.SKIP".');