ACME-CPANPLUS-Module-With-Core-PreReq
view release on metacpan or search on metacpan
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.>
{
"abstract" : "Fake module with a prereq that is a core module for testing CPANPLUS",
"author" : [
"Chris Williams <chris@bingosnet.co.uk>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"Test::Pod::Coverage" : "1.08"
}
},
"runtime" : {
"requires" : {
"Config" : "0",
"Errno" : "0",
"perl" : "5.006"
}
},
"test" : {
"requires" : {
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::More" : "0.47"
}
}
},
"release_status" : "stable",
"resources" : {
---
abstract: 'Fake module with a prereq that is a core module for testing CPANPLUS'
author:
- 'Chris Williams <chris@bingosnet.co.uk>'
build_requires:
ExtUtils::MakeMaker: '6.59'
File::Spec: '0'
IO::Handle: '0'
IPC::Open3: '0'
Test::More: '0.47'
configure_requires:
ExtUtils::MakeMaker: '0'
Makefile.PL view on Meta::CPAN
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Fake module with a prereq that is a core module for testing CPANPLUS",
"AUTHOR" => "Chris Williams <chris\@bingosnet.co.uk>",
"BUILD_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.59",
"Test::More" => "0.47"
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "ACME-CPANPLUS-Module-With-Core-PreReq",
"LICENSE" => "perl",
Makefile.PL view on Meta::CPAN
"Config" => 0,
"Errno" => 0
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => "0.47"
},
"VERSION" => "0.06",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Config" => 0,
"Errno" => 0,
"ExtUtils::MakeMaker" => "6.59",
"File::Spec" => 0,
NAME
ACME::CPANPLUS::Module::With::Core::PreReq - Fake module with a prereq
that is a core module for testing CPANPLUS
VERSION
version 0.06
SYNOPSIS
# erm
cpanp -i ACME::CPANPLUS::Module::With::Core::PreReq
DESCRIPTION
ACME::CPANPLUS::Module::With::Core::PreReq is a fake module that has a
prerequisite of a core module so I can test something in CPANPLUS and
CPANPLUS::YACSmoke
No moving parts and nothing to see.
AUTHOR
Chris Williams <chris@bingosnet.co.uk>
COPYRIGHT AND LICENSE
lib/ACME/CPANPLUS/Module/With/Core/PreReq.pm view on Meta::CPAN
package ACME::CPANPLUS::Module::With::Core::PreReq;
$ACME::CPANPLUS::Module::With::Core::PreReq::VERSION = '0.06';
#ABSTRACT: Fake module with a prereq that is a core module for testing CPANPLUS
use strict;
use warnings;
qq[Nobody here but us chickens];
__END__
=pod
=encoding UTF-8
=head1 NAME
ACME::CPANPLUS::Module::With::Core::PreReq - Fake module with a prereq that is a core module for testing CPANPLUS
=head1 VERSION
version 0.06
=head1 SYNOPSIS
# erm
cpanp -i ACME::CPANPLUS::Module::With::Core::PreReq
=head1 DESCRIPTION
ACME::CPANPLUS::Module::With::Core::PreReq is a fake module that has a prerequisite of a core module
so I can test something in L<CPANPLUS> and L<CPANPLUS::YACSmoke>
No moving parts and nothing to see.
=head1 AUTHOR
Chris Williams <chris@bingosnet.co.uk>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Chris Williams.
t/00-compile.t view on Meta::CPAN
use 5.006;
use strict;
use warnings;
# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.056
use Test::More;
plan tests => 1 + ($ENV{AUTHOR_TESTING} ? 1 : 0);
my @module_files = (
'ACME/CPANPLUS/Module/With/Core/PreReq.pm'
);
# no fake home requested
my @switches = (
t/01_fail.t view on Meta::CPAN
use Test::More tests => 1;
fail("Nobody here but us chickens");
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
t/99_pod_coverage.t view on Meta::CPAN
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
all_pod_coverage_ok();
t/author-pod-coverage.t view on Meta::CPAN
#!perl
BEGIN {
unless ($ENV{AUTHOR_TESTING}) {
print qq{1..0 # SKIP these tests are for testing by the author\n};
exit
}
}
# This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests.
use Test::Pod::Coverage 1.08;
use Pod::Coverage::TrustPod;
all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });
t/author-pod-syntax.t view on Meta::CPAN
#!perl
BEGIN {
unless ($ENV{AUTHOR_TESTING}) {
print qq{1..0 # SKIP these tests are for testing by the author\n};
exit
}
}
# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
use strict; use warnings;
use Test::More;
use Test::Pod 1.41;
all_pod_files_ok();
( run in 2.437 seconds using v1.01-cache-2.11-cpan-f0fbb3f571b )