ditching the COMPONENT constructor
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Role / HoldsFoo.pm
1 package TestAppCustomContainer::Role::HoldsFoo;
2 use Moose::Role;
3 use namespace::autoclean;
4
5 has foo => (
6     is       => 'ro',
7     isa      => 'TestAppCustomContainer::Model::Foo',
8     required => 1,
9 );
10
11 1;