stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Model / ClosuresInConfig.pm
CommitLineData
b99e1171 1package TestApp::Model::ClosuresInConfig;
2use Moose;
3use namespace::clean -except => 'meta';
4
5extends 'TestApp::Model';
6
7# Note - don't call ->config in here until the constructor calls it to
8# retrieve config, so that we get the 'copy from parent' path,
9# and ergo break due to the closure if dclone is used there..
10
11__PACKAGE__->meta->make_immutable;
12