Test-Files

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "runtime" : {
         "requires" : {
            "Class::XSAccessor" : "0",
            "Const::Fast" : "0",
            "Cwd" : "0",
            "Data::Compare" : "0",
            "Exporter" : "0",
            "Fcntl" : "0",
            "File::chdir" : "0",
            "PadWalker" : "0",
            "Path::Tiny" : "0.144",
            "Test::Builder" : "0",
            "Text::Diff" : "0",
            "perl" : "5.014"
         }
      },
      "test" : {
         "requires" : {
            "Archive::Zip" : "0",
            "File::Copy::Recursive" : "0",

META.yml  view on Meta::CPAN

    - t
    - inc
requires:
  Class::XSAccessor: '0'
  Const::Fast: '0'
  Cwd: '0'
  Data::Compare: '0'
  Exporter: '0'
  Fcntl: '0'
  File::chdir: '0'
  PadWalker: '0'
  Path::Tiny: '0.144'
  Test::Builder: '0'
  Text::Diff: '0'
  perl: '5.014'
resources:
  bugtracker: https://github.com/jsf116/Test-Files/issues
  repository: git://github.com/jsf116/Test-Files.git
version: '0.26'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

	MIN_PERL_VERSION => '5.014',
	NAME             => 'Test::Files',
	PREREQ_PM        => {
		'Class::XSAccessor' => 0,
		'Const::Fast'    		=> 0,
		'Cwd'            		=> 0,
		'Data::Compare'  		=> 0,
		'Exporter'       		=> 0,
		'Fcntl'          		=> 0,
		'File::chdir'    		=> 0,
		'PadWalker'      		=> 0,
		'Path::Tiny'     		=> '0.144',
		'Test::Builder'  		=> 0,
		'Text::Diff'     		=> 0,
	},
	TEST_REQUIRES    => {
		'Archive::Zip'  				=> 0,
		'File::Copy::Recursive' => 0,
		'FindBin'        				=> 0,
		'Test::Expander' 				=> 0,
		'Test::Simple'   				=> 0,

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


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

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

use Const::Fast qw( const );
use Exporter    qw( import );
use PadWalker   qw( peek_our );

const our $DIRECTORY_OPTIONS       => {
  EXISTENCE_ONLY => 0,
  FILTER         => undef,
  NAME_PATTERN   => '.',
  RECURSIVE      => 0,
  SIZE_ONLY      => 0,
  SYMMETRIC      => 0,
};
const our $ARCHIVE_OPTIONS         => {



( run in 0.851 second using v1.01-cache-2.11-cpan-05444aca049 )