Test-Expander

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "runtime" : {
         "requires" : {
            "B" : "0",
            "Const::Fast" : "0",
            "Exporter" : "0",
            "File::Temp" : "0",
            "File::chdir" : "0",
            "Getopt::Long" : "0",
            "Importer" : "0",
            "PadWalker" : "0",
            "Path::Tiny" : "0.150",
            "Scalar::Readonly" : "0",
            "Sub::Delete" : "0",
            "Test2::API" : "0",
            "Test2::Tools::Basic" : "0",
            "Test2::Tools::Explain" : "0",
            "Test2::Tools::Subtest" : "0",
            "Test2::V1" : "0",
            "Test::Builder" : "0",
            "perl" : "5.014"

META.yml  view on Meta::CPAN

    - t
    - inc
requires:
  B: '0'
  Const::Fast: '0'
  Exporter: '0'
  File::Temp: '0'
  File::chdir: '0'
  Getopt::Long: '0'
  Importer: '0'
  PadWalker: '0'
  Path::Tiny: '0.150'
  Scalar::Readonly: '0'
  Sub::Delete: '0'
  Test2::API: '0'
  Test2::Tools::Basic: '0'
  Test2::Tools::Explain: '0'
  Test2::Tools::Subtest: '0'
  Test2::V1: '0'
  Test::Builder: '0'
  perl: '5.014'

Makefile.PL  view on Meta::CPAN

	MIN_PERL_VERSION => '5.014',
	NAME             => 'Test::Expander',
	PREREQ_PM        => {
		'B'                     => 0,
		'Const::Fast'           => 0,
		'Exporter'              => 0,
		'File::chdir'           => 0,
		'File::Temp'            => 0,
		'Getopt::Long'          => 0,
		'Importer'              => 0,
		'PadWalker'             => 0,
		'Path::Tiny'            => '0.150',
		'Scalar::Readonly'      => 0,
		'Sub::Delete'           => 0,
		'Test::Builder' 				=> 0,
		'Test2::API'   					=> 0,
		'Test2::Tools::Basic'   => 0,
		'Test2::Tools::Explain' => 0,
		'Test2::Tools::Subtest' => 0,
		'Test2::V1'             => 0,
	},

lib/Test/Expander/Constants.pm  view on Meta::CPAN

our $VERSION = '2.7.1';                                     ## no critic (RequireUseStrict, RequireUseWarnings)

use strict;
use warnings
  FATAL    => qw( all ),
  NONFATAL => qw( deprecated exec internal malloc newline once portable redefine recursion uninitialized );

use B                qw( svref_2object );
use Const::Fast;
use Exporter         qw( import );
use PadWalker        qw( peek_our );
use Scalar::Readonly qw( readonly_on );
use Test2::Tools::Basic;

readonly_on( $VERSION );

const our $COMMENT                     => '#';

const our $DIE                         => sub { die( sprintf( $_[ 0 ], @_[ 1 .. $#_ ] ) ) };

const our $EXCEPTION_PREFIX            => 'BEGIN failed--compilation aborted at ';



( run in 1.834 second using v1.01-cache-2.11-cpan-39bf76dae61 )