Test-Expander
view release on metacpan or search on metacpan
},
"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.144",
"Scalar::Readonly" : "0",
"Test2::API" : "0",
"Test2::Tools::Basic" : "0",
"Test2::Tools::Explain" : "0",
"Test2::Tools::Subtest" : "0",
"Test2::V0" : "0",
"Test::Builder" : "0",
"perl" : "5.014"
}
- 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.144'
Scalar::Readonly: '0'
Test2::API: '0'
Test2::Tools::Basic: '0'
Test2::Tools::Explain: '0'
Test2::Tools::Subtest: '0'
Test2::V0: '0'
Test::Builder: '0'
perl: '5.014'
resources:
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.144',
'Scalar::Readonly' => 0,
'Test::Builder' => 0,
'Test2::API' => 0,
'Test2::Tools::Basic' => 0,
'Test2::Tools::Explain' => 0,
'Test2::Tools::Subtest' => 0,
'Test2::V0' => 0,
},
TEST_REQUIRES => {
lib/Test/Expander/Constants.pm view on Meta::CPAN
our $VERSION = '2.5.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 $DIE => sub { die( sprintf( $_[ 0 ], @_[ 1 .. $#_ ] ) ) };
const our $EXCEPTION_PREFIX => 'BEGIN failed--compilation aborted at ';
const our $FALSE => 0;
( run in 0.771 second using v1.01-cache-2.11-cpan-05444aca049 )