Fix the way Catalyst::Plugin::Server adds custom dispatch types
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / DispatchType / CustomPostLoad.pm
CommitLineData
083ee5d9 1package TestApp::DispatchType::CustomPostLoad;
2use strict;
3use warnings;
4use base qw/Catalyst::DispatchType::Path/;
5
6# Never match anything..
7sub match { }
8
91;
10