Args() wasn't being processed as unlimited number of args, due to
[catagits/Catalyst-Runtime.git] / t / lib / TestPath / Controller / Four.pm
1 package TestPath::Controller::Four;
2 use Moose;
3 use namespace::autoclean;
4
5 BEGIN { extends 'Catalyst::Controller' }
6
7 sub four :Path('') :Args() {
8     my ( $self, $c ) = @_;
9     $c->response->body( 'OK' );
10 }
11
12 __PACKAGE__->meta->make_immutable;