Egg-Release-Authorize

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  - 'Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>'
abstract: lib/Egg/Release/Authorize.pm
license: perl
resources:
  license: http://dev.perl.org/licenses/
requires:
  Cache::Cache: 1.05
  Crypt::Blowfish: 2.10
  Crypt::CBC: 2.24
  Crypt::Camellia: 2.01
  Crypt::DES: 2.05
  Digest::MD5: 2.36
  Digest::SHA1: 2.11
  Egg::Plugin::SessionKit: 3.02
  Egg::Release: 3.01
  Egg::Release::DBI: 0.02
  Egg::Release::DBIC: 0.02
  Test::More: 0
  Test::Perl::Critic: 0
  Test::Pod: 0
  Test::Pod::Coverage: 0

Makefile.PL  view on Meta::CPAN

license       'perl';

requires 'Egg::Release'            => '3.14';
requires 'Egg::Plugin::SessionKit' => '3.02';
requires 'Egg::Release::DBI'       => '0.02';
requires 'Egg::Release::DBIC'      => '0.02';
requires 'Digest::MD5'             => '2.36';
requires 'Digest::SHA1'            => '2.11';
requires 'Crypt::CBC'              => '2.24';
requires 'Crypt::Blowfish'         => '2.10';
requires 'Crypt::DES'              => '2.05';
requires 'Crypt::Camellia'         => '2.01';
requires 'Cache::Cache'            => '1.05';

build_requires 'Test::More';
build_requires 'Test::Pod';
build_requires 'Test::Perl::Critic';
build_requires 'Test::Pod::Coverage';

use_test_base;
auto_include;

t/08_crypt_cbc.t  view on Meta::CPAN

	unless ( Crypt::CBC->require ) {
		plan skip_all=> "Crypt::CBC is not installed."
	} else {
		test();
	}
}

sub test {

my $ciper= Crypt::Blowfish->require ? 'Blowfish'
         : Crypt::DES->require      ? 'DES'
         : Crypt::Camellia->require ? 'Camellia'
         : Crypt::Rabbit->require   ? 'Rabbit'
         : Crypt::Twofish2->require ? 'Twofish2'
         : return do {
	plan skip_all=> "The Ciper module is not installed.";
  };

plan tests=> 39;

my $tool= Egg::Helper->helper_tools;

t/10_plugin_keep.t  view on Meta::CPAN

	unless ( Crypt::CBC->require ) {
		plan skip_all=> "Crypt::CBC is not installed."
	} else {
		test();
	}
}

sub test {

my $ciper= Crypt::Blowfish->require ? 'Blowfish'
         : Crypt::DES->require      ? 'DES'
         : Crypt::Camellia->require ? 'Camellia'
         : Crypt::Rabbit->require   ? 'Rabbit'
         : Crypt::Twofish2->require ? 'Twofish2'
         : return do {
	plan skip_all=> "The Ciper module is not installed.";
  };

plan tests=> 23;

my $tool= Egg::Helper->helper_tools;



( run in 0.241 second using v1.01-cache-2.11-cpan-9a3d99fc6dc )