Catalyst-Plugin-URLMap

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'Mount any Plack application to a URL root'
author:
  - 'John Napiorkowski <jjnapiork@cpan.org>'
build_requires:
  Catalyst: 5.90001
  Catalyst::Test: 0
  FindBin: 0
  HTTP::Request::Common: 0
  Moose: 0
  Plack::App::File: 0
  Plack::App::URLMap: 0
  Plack::Component: 0
  Plack::Util: 0
  Scalar::Util: 0
  Test::Most: 0.25
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0

Makefile.PL  view on Meta::CPAN




my %WriteMakefileArgs = (
  "ABSTRACT" => "Mount any Plack application to a URL root",
  "AUTHOR" => "John Napiorkowski <jjnapiork\@cpan.org>",
  "BUILD_REQUIRES" => {
    "Catalyst" => "5.90001",
    "Catalyst::Test" => 0,
    "FindBin" => 0,
    "HTTP::Request::Common" => 0,
    "Moose" => 0,
    "Plack::App::File" => 0,
    "Plack::App::URLMap" => 0,
    "Plack::Component" => 0,
    "Plack::Util" => 0,
    "Scalar::Util" => 0,
    "Test::Most" => "0.25"
  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"

dist.ini  view on Meta::CPAN

Moose::Role = 0
namespace::autoclean = 0
Catalyst::Utils = 0
Text::SimpleTable = 0

[Prereqs / TestRequires]
Test::Most = 0.25
Moose = 0
Catalyst = 5.90001
Catalyst::Test = 0
HTTP::Request::Common = 0
FindBin = 0
Plack::App::File = 0
Plack::Component = 0
Plack::App::URLMap = 0
Plack::Util = 0
Scalar::Util = 0

t/basic.t  view on Meta::CPAN

#!/usr/bin/env perl

use FindBin;
use Test::Most;
use HTTP::Request::Common;

use lib "$FindBin::Bin/lib";
use Catalyst::Test 'TestApp';

ok my($res, $c) = ctx_request('/');

{
  ok my $response = request GET $c->uri_for_action('/welcome'),
    'got welcome from a catalyst controller';



( run in 0.406 second using v1.01-cache-2.11-cpan-de7293f3b23 )