prereq update
[catagits/CatalystX-Declare.git] / t / 022_parameterized_roles.t
CommitLineData
c2a8165b 1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7
8use Test::More;
9use Catalyst::Test 'TestApp';
10
11TODO: {
12 local $TODO = 'MooseX::MethodAttributes needs to allow this';
13 is get('/param/greet'), 'foo:foo', 'parameterized role was consumed correctly';
14}
15
16done_testing;