Acme-CPANAuthors-Malaysian
view release on metacpan or search on metacpan
CONTRIBUTING.md view on Meta::CPAN
If you have Docker installed, you can build your Docker container for this
project.
$ docker build -t acme-cpanauthors-malaysian .
$ docker run -it -v $(pwd):/root acme-cpanauthors-malaysian bash
# cpanm --installdeps --notest .
### Milla
Setting up the required packages.
$ milla authordeps --missing | cpanm
$ milla listdeps --missing | cpanm
Check you code coverage.
$ milla cover
Several ways to run the test.
General Provisions
(10) Any use, modification, and distribution of the Standard or
Modified Versions is governed by this Artistic License. By using,
modifying or distributing the Package, you accept this license. Do not
use, modify, or distribute the Package, if you do not accept this
license.
(11) If your Modified Version has been derived from a Modified
Version made by someone other than you, you are nevertheless required
to ensure that your Modified Version complies with the requirements of
this license.
(12) This license does not grant you the right to use any trademark,
service mark, tradename, or logo of the Copyright Holder.
(13) This license includes the non-exclusive, worldwide,
free-of-charge patent license to make, have made, use, offer to sell,
sell, import and otherwise transfer the Package with respect to any
patent claims licensable by the Copyright Holder that are necessarily
t/release-has-version.t view on Meta::CPAN
unless ($ENV{RELEASE_TESTING}) {
print qq{1..0 # SKIP these tests are for release candidate testing\n};
exit
}
}
use Test::More;
eval "use Test::HasVersion";
plan skip_all => "Test::HasVersion required for testing version numbers"
if $@;
all_pm_version_ok();
t/release-kwalitee.t view on Meta::CPAN
unless ($ENV{RELEASE_TESTING}) {
print qq{1..0 # SKIP these tests are for release candidate testing\n};
exit
}
}
use Test::More;
eval "use Test::Kwalitee";
plan skip_all => "Test::Kwalitee required for testing kwalitee"
if $@;
t/release-unused-vars.t view on Meta::CPAN
print qq{1..0 # SKIP these tests are for release candidate testing\n};
exit
}
}
use Test::More 0.96 tests => 1;
eval { require Test::Vars };
SKIP: {
skip 1 => 'Test::Vars required for testing for unused vars'
if $@;
Test::Vars->import;
subtest 'unused vars' => sub {
all_vars_ok();
};
};
( run in 0.435 second using v1.01-cache-2.11-cpan-0a6323c29d9 )