Getopt-Long-DescriptivePod

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
      "version" : 2
   },
   "name" : "Getopt-Long-DescriptivePod",
   "prereqs" : {
      "build" : {
         "requires" : {
            "Getopt::Long::Descriptive" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0",
            "Test::NoWarnings" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "Module::Build" : "0.42"
         }
      },

META.yml  view on Meta::CPAN

---
abstract: 'Getopt::Long::DescriptivePod - write usage to Pod'
author:
  - 'Steffen Winkler <steffenw at cpan.org>'
build_requires:
  Getopt::Long::Descriptive: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::More: '0'
  Test::NoWarnings: '0'
configure_requires:
  Module::Build: '0.42'
dynamic_config: 1
generated_by: 'Module::Build version 0.4231, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

require 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
  'EXE_FILES' => [],
  'VERSION_FROM' => 'lib/Getopt/Long/DescriptivePod.pm',
  'NAME' => 'Getopt::Long::DescriptivePod',
  'PL_FILES' => {},
  'INSTALLDIRS' => 'site',
  'PREREQ_PM' => {
                   'Test::Differences' => 0,
                   'Test::More' => 0,
                   'Sub::Exporter' => 0,
                   'Test::Exception' => 0,
                   'Getopt::Long::Descriptive' => 0,
                   'Test::NoWarnings' => 0,
                   'Params::Validate' => 0,
                   'English' => 0,
                   'Carp' => 0
                 }
)

t/01_basics.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use Test::More tests => 7;
use Test::NoWarnings;
use Test::Exception;
use Test::Differences;

BEGIN {
    use_ok 'Getopt::Long::Descriptive';
    use_ok 'Getopt::Long::DescriptivePod';
}

my $extra_space 
    = $Getopt::Long::Descriptive::VERSION >= 0.100 ? q{}
    : $Getopt::Long::Descriptive::VERSION >= 0.099 ? q{  }
    :                                                q{ };

t/02_before_and_after.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use Test::More tests => 7;
use Test::NoWarnings;
use Test::Exception;
use Test::Differences;

BEGIN {
    use_ok 'Getopt::Long::Descriptive';
    use_ok 'Getopt::Long::DescriptivePod';
}

my $extra_space_left
    = $Getopt::Long::Descriptive::VERSION >= 0.113 ? q{   }
    :                                                q{};
my $extra_space_right

t/05_no_newline_at_eof.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use Test::More tests => 7;
use Test::NoWarnings;
use Test::Exception;
use Test::Differences;

BEGIN {
    use_ok 'Getopt::Long::Descriptive';
    use_ok 'Getopt::Long::DescriptivePod';
}

my $extra_space 
    = $Getopt::Long::Descriptive::VERSION >= 0.100 ? q{}
    : $Getopt::Long::Descriptive::VERSION >= 0.099 ? q{  }
    :                                                q{ };

t/06_no_change.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use Test::More tests => 8;
use Test::NoWarnings;
use Test::Exception;
use Test::Differences;

BEGIN {
    use_ok 'Getopt::Long::Descriptive';
    use_ok 'Getopt::Long::DescriptivePod';
}

my $extra_space 
    = $Getopt::Long::Descriptive::VERSION >= 0.100 ? q{}
    : $Getopt::Long::Descriptive::VERSION >= 0.099 ? q{  }
    :                                                q{ };

t/11_test_examples.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use Test::More;
use Test::Differences;
use Carp qw(confess);
use Cwd qw(getcwd chdir);
use English qw(-no_match_vars $OS_ERROR $INPUT_RECORD_SEPARATOR $CHILD_ERROR);

$ENV{AUTHOR_TESTING}
    or plan skip_all => 'Set $ENV{AUTHOR_TESTING} to run this test.';

plan tests => 2;

my @data = (



( run in 4.103 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )