1c92392c1acbdde69e738387afe9c2115cc7c643
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / Bar.pm
1 package TestAppCustomContainer::Model::Bar;
2 use Moose;
3 extends 'Catalyst::Model';
4 with 'TestAppCustomContainer::Role::HoldsFoo',
5      'TestAppCustomContainer::Role::ACCEPT_CONTEXT';
6
7 sub BUILD {
8     my ( $self ) = @_;
9
10     $self->foo->inc_bar_got_it;
11 }
12
13 __PACKAGE__->meta->make_immutable;
14
15 no Moose;
16 1;