CGI-Application-Plugin-TT-Any
view release on metacpan or search on metacpan
"requires" : {
"CGI::Application::Plugin::TT" : 0,
"Carp" : 0,
"Class::Load" : 0
}
},
"test" : {
"requires" : {
"CGI" : 0,
"CGI::Application" : 0,
"Test::Fatal" : 0,
"Test::More" : 0,
"Test::Most" : 0,
"Test::Simple" : "0.96"
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"type" : "git",
---
abstract: 'load CGI::Application::Plugin::TT with any TT-compatible class'
author:
- 'Christian Walde <walde.christian@googlemail.com>'
build_requires:
CGI: 0
CGI::Application: 0
Test::Fatal: 0
Test::More: 0
Test::Most: 0
Test::Simple: 0.96
configure_requires:
ExtUtils::MakeMaker: 6.31
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.200000, CPAN::Meta::Converter version 2.102400'
license: unrestricted
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker 6.31;
my %WriteMakefileArgs = (
'ABSTRACT' => 'load CGI::Application::Plugin::TT with any TT-compatible class',
'AUTHOR' => 'Christian Walde <walde.christian@googlemail.com>',
'BUILD_REQUIRES' => {
'CGI' => '0',
'CGI::Application' => '0',
'Test::Fatal' => '0',
'Test::More' => '0',
'Test::Most' => '0',
'Test::Simple' => '0.96'
},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'DISTNAME' => 'CGI-Application-Plugin-TT-Any',
'EXE_FILES' => [],
'LICENSE' => 'unrestricted',
use warnings;
package fail_test;
BEGIN {
chdir '..' if -d '../t';
use lib './lib';
}
use Test::Most;
use Test::Fatal;
BEGIN { require_ok('CGI::Application::Plugin::TT::Any') };
like(
exception { CGI::Application::Plugin::TT::Any->import; },
qr{CGI::Application::Plugin::TT needs to be loaded first},
"can't load before CAP::TT",
);
done_testing;
( run in 1.223 second using v1.01-cache-2.11-cpan-54e63673c56 )