Acme-JTM-Experiment

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
      "version" : 2
   },
   "name" : "Acme-JTM-Experiment",
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::UseAllModules" : "0.17"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "develop" : {
         "requires" : {
            "Test::EOL" : "0",
            "Test::More" : "0.88",
            "Test::NoTabs" : "0",
            "Test::Perl::Critic" : "0",

META.yml  view on Meta::CPAN

---
abstract: 'Testing Perl Constructs on CPAN Testers'
author:
  - 'Joelle Maslak <jmaslak@antelope.net>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  Test2::V0: '0'
  Test::More: '0'
  Test::UseAllModules: '0.17'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-JTM-Experiment
provides:
  Acme::JTM::Experiment:

t/00-report-prereqs.dd  view on Meta::CPAN

do { my $x = {
       'build' => {
                    'requires' => {
                                    'Test::UseAllModules' => '0.17'
                                  }
                  },
       'configure' => {
                        'requires' => {
                                        'ExtUtils::MakeMaker' => '0'
                                      }
                      },
       'develop' => {
                      'requires' => {
                                      'Test::EOL' => '0',
                                      'Test::More' => '0.88',
                                      'Test::NoTabs' => '0',
                                      'Test::Perl::Critic' => '0',

t/00-report-prereqs.t  view on Meta::CPAN


my @full_reports;
my @dep_errors;
my $req_hash = $HAS_CPAN_META ? $full_prereqs->as_string_hash : $full_prereqs;

# Add static includes into a fake section
for my $mod (@include) {
    $req_hash->{other}{modules}{$mod} = 0;
}

for my $phase ( qw(configure build test runtime develop other) ) {
    next unless $req_hash->{$phase};
    next if ($phase eq 'develop' and not $ENV{AUTHOR_TESTING});

    for my $type ( qw(requires recommends suggests conflicts modules) ) {
        next unless $req_hash->{$phase}{$type};

        my $title = ucfirst($phase).' '.ucfirst($type);
        my @reports = [qw/Module Want Have/];

        for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) {



( run in 0.804 second using v1.01-cache-2.11-cpan-0a6323c29d9 )