initial commit with working tests, docs, and conversion to dzil+podweaver
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / RestTest / Controller / API / REST / CD.pm
1 package RestTest::Controller::API::REST::CD;
2 use Moose;
3 BEGIN { extends 'Catalyst::Controller::DBIC::API::REST' }
4
5 use namespace::autoclean;
6
7 __PACKAGE__->config
8     ( action => { setup => { PathPart => 'cd', Chained => '/api/rest/rest_base' } },
9       class => 'RestTestDB::CD',
10       create_requires => ['artist', 'title', 'year' ],
11       update_allows => ['title', 'year'],
12       prefetch_allows => [['artist', ['tracks'], { cd_to_producer => ['producer'], tags => 'cd' }]],
13       );
14
15 1;