CatalystX-ConsumesJMS
view release on metacpan or search on metacpan
"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"
}
}
},
"release_status" : "stable",
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'
configure_requires:
ExtUtils::MakeMaker: '6.30'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.019, CPAN::Meta::Converter version 2.140640'
Makefile.PL view on Meta::CPAN
"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
},
"VERSION" => "1.08",
"test" => {
"TESTS" => "t/*.t t/test1/*.t t/test2/*.t t/test3/*.t t/test4/*.t"
Makefile.PL view on Meta::CPAN
"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,
"namespace::autoclean" => 0,
"ok" => 0,
"strict" => 0,
"warnings" => 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
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,
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,
t/test3/conf.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Test::Plack::Handler::Stomp;
use Net::Stomp::Frame;
use Data::Printer;
use lib 't/lib';
$ENV{CATALYST_CONFIG} = 't/lib/test3.conf';
require Test3;
# let's get the destinations from the controllers, to make sure they
# got created properly, 2 controllers for a single Foo, because of the
t/test3/run.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Test::Plack::Handler::Stomp;
use Net::Stomp::Frame;
use Data::Printer;
use lib 't/lib';
use Test3;
my $t = Test::Plack::Handler::Stomp->new();
$t->set_arg(
subscriptions => [
{ destination => '/queue/input_queue',
t/test4/run.t view on Meta::CPAN
#!perl
use warnings;
use Test::Most;
use Test::Fatal;
use Test::Plack::Handler::Stomp;
use Net::Stomp::Frame;
use Data::Printer;
use lib 't/lib';
use Test4;
my $t = Test::Plack::Handler::Stomp->new();
$t->set_arg(
subscriptions => [
{ destination => '/queue/input_queue',
( run in 3.007 seconds using v1.01-cache-2.11-cpan-54e63673c56 )