initial commit with working tests, docs, and conversion to dzil+podweaver
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / RestTest / Controller / API.pm
1 package RestTest::Controller::API;
2
3 use strict;
4 use warnings;
5 use base qw/Catalyst::Controller/;
6
7 sub api_base : Chained('/') PathPart('api') CaptureArgs(0) {
8     my ( $self, $c ) = @_;
9
10 }
11
12 1;