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