Merge branch 'master' into gsoc_breadboard
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Role / FailIfACCEPT_CONTEXTCalled.pm
CommitLineData
66dc5ce5 1package TestAppCustomContainer::Role::FailIfACCEPT_CONTEXTCalled;
2use Moose::Role;
3use Test::More;
4
5sub ACCEPT_CONTEXT {}
6before ACCEPT_CONTEXT => sub {
7 my ($self, $ctx, @args) = @_;
8 fail("ACCEPT_CONTEXT called for $self");
9};
10
111;