CatalystX-Syntax-Action

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Carp" : 0,
            "Devel::Declare" : "0.006004",
            "parent" : "0.225",
            "perl" : "5.008008"
         }
      },
      "test" : {
         "requires" : {
            "Catalyst::Runtime" : "5.80",
            "FindBin" : 0,
            "HTTP::Request::Common" : 0,
            "Moose" : "2.0007",
            "Test::More" : "0.98",
            "namespace::autoclean" : "0.12",
            "syntax" : "0.003"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {

META.yml  view on Meta::CPAN

---
abstract: 'Semantically meaningful Catalyst Actions with signatures'
author:
  - 'John Napiorkowski <jjnapiork@cpan.org>'
build_requires:
  Catalyst::Runtime: 5.80
  FindBin: 0
  HTTP::Request::Common: 0
  Moose: 2.0007
  Test::More: 0.98
  namespace::autoclean: 0.12
  syntax: 0.003
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.200006, CPAN::Meta::Converter version 2.110930'
license: perl
meta-spec:

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker 6.30;



my %WriteMakefileArgs = (
  'ABSTRACT' => 'Semantically meaningful Catalyst Actions with signatures',
  'AUTHOR' => 'John Napiorkowski <jjnapiork@cpan.org>',
  'BUILD_REQUIRES' => {
    'Catalyst::Runtime' => '5.80',
    'FindBin' => '0',
    'HTTP::Request::Common' => '0',
    'Moose' => '2.0007',
    'Test::More' => '0.98',
    'namespace::autoclean' => '0.12',
    'syntax' => '0.003'
  },
  'CONFIGURE_REQUIRES' => {
    'ExtUtils::MakeMaker' => '6.30'
  },
  'DISTNAME' => 'CatalystX-Syntax-Action',
  'EXE_FILES' => [],

dist.ini  view on Meta::CPAN

parent = 0.225
B::Hooks::EndOfScope = 0.09
Carp = 0

[Prereqs / TestRequires]
Moose = 2.0007
Test::More = 0.98
Catalyst::Runtime = 5.80
namespace::autoclean = 0.12
syntax = 0.003
HTTP::Request::Common = 0
FindBin = 0

t/basic.t  view on Meta::CPAN

use strict;
use warnings FATAL =>'all';

use FindBin;
use Test::More;
use HTTP::Request::Common 'GET';

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

is request(GET '/')->content, 'test';
is request(GET '/foo')->content, 'foo';
is request(GET '/root')->content, 'root_0';
is request(GET '/root/100')->content, 'root_1';
is request(GET '/root/foo/100')->content, 'root_foo_1';



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