stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / DispatchType / CustomPreLoad.pm
1 package TestApp::DispatchType::CustomPreLoad;
2 use strict;
3 use warnings;
4 use base qw/Catalyst::DispatchType::Path/;
5
6 # Never match anything..
7 sub match { }
8
9 1;
10