CatalystX-ConsumesJMS
view release on metacpan or search on metacpan
"test" : {
"requires" : {
"Catalyst" : "0",
"Catalyst::Component" : "0",
"Catalyst::Controller" : "0",
"Catalyst::Controller::JMS" : "0",
"Catalyst::Plugin::ConfigLoader" : "0",
"Catalyst::Test" : "0",
"Config::General" : "0",
"Data::Printer" : "0",
"HTTP::Request::Common" : "0",
"Moose" : "2.0801",
"MooseX::MethodAttributes::Role" : "0",
"Net::Stomp::Frame" : "0",
"Test::Fatal" : "0",
"Test::Most" : "0",
"Test::Plack::Handler::Stomp" : "0",
"lib" : "0",
"ok" : "0",
"strict" : "0",
"warnings" : "0"
- 'Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com>'
build_requires:
Catalyst: '0'
Catalyst::Component: '0'
Catalyst::Controller: '0'
Catalyst::Controller::JMS: '0'
Catalyst::Plugin::ConfigLoader: '0'
Catalyst::Test: '0'
Config::General: '0'
Data::Printer: '0'
HTTP::Request::Common: '0'
Moose: '2.0801'
MooseX::MethodAttributes::Role: '0'
Net::Stomp::Frame: '0'
Test::Fatal: '0'
Test::Most: '0'
Test::Plack::Handler::Stomp: '0'
lib: '0'
ok: '0'
strict: '0'
warnings: '0'
Makefile.PL view on Meta::CPAN
},
"TEST_REQUIRES" => {
"Catalyst" => 0,
"Catalyst::Component" => 0,
"Catalyst::Controller" => 0,
"Catalyst::Controller::JMS" => 0,
"Catalyst::Plugin::ConfigLoader" => 0,
"Catalyst::Test" => 0,
"Config::General" => 0,
"Data::Printer" => 0,
"HTTP::Request::Common" => 0,
"Moose" => "2.0801",
"MooseX::MethodAttributes::Role" => 0,
"Net::Stomp::Frame" => 0,
"Test::Fatal" => 0,
"Test::Most" => 0,
"Test::Plack::Handler::Stomp" => 0,
"lib" => 0,
"ok" => 0,
"strict" => 0,
"warnings" => 0
Makefile.PL view on Meta::CPAN
my %FallbackPrereqs = (
"Catalyst" => 0,
"Catalyst::Component" => 0,
"Catalyst::Controller" => 0,
"Catalyst::Controller::JMS" => 0,
"Catalyst::Plugin::ConfigLoader" => 0,
"Catalyst::Test" => 0,
"Catalyst::Utils" => 0,
"Config::General" => 0,
"Data::Printer" => 0,
"HTTP::Request::Common" => 0,
"Module::Runtime" => 0,
"Moose" => "2.0801",
"Moose::Role" => 0,
"Moose::Util" => 0,
"MooseX::MethodAttributes::Role" => 0,
"Net::Stomp::Frame" => 0,
"Test::Fatal" => 0,
"Test::Most" => 0,
"Test::Plack::Handler::Stomp" => 0,
"lib" => 0,
t/test1/conf.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Data::Printer;
use HTTP::Request::Common;
use lib 't/lib';
BEGIN { $ENV{CATALYST_CONFIG} = 't/lib/test1.conf' }
use Catalyst::Test 'Test1';
# let's get all URLs from the controllers, to make sure they got
# created properly, 2 controllers for a single Foo, because of the
# configuration
my @destinations =
map { '/'.$_ }
t/test1/run.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Data::Printer;
use HTTP::Request::Common;
use lib 't/lib';
use Catalyst::Test 'Test1';
my $foo_one = Test1->component('Test1::Foo::One');
subtest 'correct message' => sub {
my $res = request POST "/base_url/my_action",
'Request-id' => 356,
'Content-type' => 'text/plain',
'Content-length' => 6,
t/test2/run.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Data::Printer;
use HTTP::Request::Common;
use lib 't/lib';
use Catalyst::Test 'Test2';
my $foo_one = Test2->component('Test2::Foo::One');
subtest 'correct message' => sub {
my $res = request POST "/base_url/my_action",
'Request-id' => 356,
'Content-type' => 'text/plain',
'Content-length' => 6,
( run in 0.477 second using v1.01-cache-2.11-cpan-de7293f3b23 )