ARGV-Abs
view release on metacpan or search on metacpan
"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",
"repository" : {
"type" : "git",
"url" : "https://github.com/dolmen/p5-ARGV-Abs.git",
"web" : "https://github.com/dolmen/p5-ARGV-Abs"
---
abstract: 'Transform paths in @ARGV to absolute paths'
author:
- 'Olivier Mengué <dolmen@cpan.org>'
build_requires:
File::Find: 0
File::Temp: 0
Test::More: 0
configure_requires:
ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300003, CPAN::Meta::Converter version 2.112150'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: ARGV-Abs
requires:
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker 6.30;
my %WriteMakefileArgs = (
"ABSTRACT" => "Transform paths in \@ARGV to absolute paths",
"AUTHOR" => "Olivier Mengu\303\251 <dolmen\@cpan.org>",
"BUILD_REQUIRES" => {
"File::Find" => 0,
"File::Temp" => 0,
"Test::More" => 0
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "ARGV-Abs",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "ARGV::Abs",
"PREREQ_PM" => {
"Cwd" => 0,
[PkgVersion]
[PodVersion]
[MetaJSON]
[GithubMeta]
remote = github
[AutoPrereqs]
[MinimumPerl]
[Test::Compile]
[Test::Kwalitee]
t/00-compile.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::More;
use File::Find;
use File::Temp qw{ tempdir };
my @modules;
find(
sub {
return if $File::Find::name !~ /\.pm\z/;
t/00-compile.t view on Meta::CPAN
$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.312 second using v1.01-cache-2.11-cpan-4d50c553e7e )