fixed bugs in type constraints and cored some extensibility features
[catagits/Catalyst-Runtime.git] / t / Test / Apple.pm
1 package t::Test::Apple;
2
3 use strict;
4 use warnings;
5
6 use parent qw/Catalyst::Controller/;
7
8 sub default :Path {
9 }
10
11 sub apple :Local {
12 }
13
14 1;