ARGV-Abs
view release on metacpan or search on metacpan
Revision history for ARGV::Abs.
1.01 2011-11-14 DOLMEN (Olivier Mengué)
Humans can ignore this release.
Fix t/91-pod-coverage.t, only to raise Kwalitee.
1.00 2011-11-04 DOLMEN (Olivier Mengué)
Add an example: examples/01.pl.
Add tests (only to raise Kwalitee and rank in the CPANTS game)
0.01 2011-09-04 DOLMEN (Olivier Mengué)
Initial release. No tests yet.
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
},
"runtime" : {
"requires" : {
"Cwd" : 0,
"File::Spec" : 0,
"perl" : "5.006",
"strict" : 0,
"warnings" : 0
}
},
"test" : {
"requires" : {
"File::Find" : 0,
"File::Temp" : 0,
"Test::More" : 0
}
}
},
"release_status" : "stable",
"resources" : {
"homepage" : "https://github.com/dolmen/p5-ARGV-Abs",
Makefile.PL view on Meta::CPAN
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "ARGV::Abs",
"PREREQ_PM" => {
"Cwd" => 0,
"File::Spec" => 0,
"strict" => 0,
"warnings" => 0
},
"VERSION" => "1.01",
"test" => {
"TESTS" => "t/*.t"
}
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
my $pp = $WriteMakefileArgs{PREREQ_PM};
for my $mod ( keys %$br ) {
if ( exists $pp->{$mod} ) {
t/00-compile.t view on Meta::CPAN
);
return @found_scripts;
}
my @scripts;
do { push @scripts, _find_scripts($_) if -d $_ }
for qw{ bin script scripts };
my $plan = scalar(@modules) + scalar(@scripts);
$plan ? (plan tests => $plan) : (plan skip_all => "no tests to run");
{
# fake home for cpan-testers
# no fake requested ## local $ENV{HOME} = tempdir( CLEANUP => 1 );
like( qx{ $^X -Ilib -e "require $_; print '$_ ok'" }, qr/^\s*$_ ok/s, "$_ loaded ok" )
for sort @modules;
SKIP: {
eval "use Test::Script 1.05; 1;";
skip "Test::Script needed to test script compilation", scalar(@scripts) if $@;
foreach my $file ( @scripts ) {
my $script = $file;
$script =~ s!.*/!!;
script_compiles( $file, "$script script compiles" );
}
}
}
t/00_compile.t view on Meta::CPAN
use Test::More tests => 1;
require_ok('ARGV::Abs');
# This test is only for raising Kwalitee
# because testing POD is done with Module::Build using "Build testpod".
use strict;
use warnings;
use Test::More;
plan skip_all => "Test POD is only for release testing" unless $ENV{RELEASE_TESTING};
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
t/91-pod-coverage.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::More skip_all => "this test is here only for raising Kwalitee";
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required" if $@;
all_pod_coverage_ok();
t/release-kwalitee.t view on Meta::CPAN
#!perl
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
}
# This test is generated by Dist::Zilla::Plugin::Test::Kwalitee
use strict;
use warnings;
use Test::More; # needed to provide plan.
eval "use Test::Kwalitee";
plan skip_all => "Test::Kwalitee required for testing kwalitee" if $@;
( run in 0.634 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )