X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FDispatchType%2FCustomPostLoad.pm;fp=t%2Flib%2FTestApp%2FDispatchType%2FCustomPostLoad.pm;h=fcd614507d017206481d9b022a0d625894df17cf;hb=4a41d5d1ec3187cc41e15767b21c14b2aee31740;hp=0000000000000000000000000000000000000000;hpb=2757db2c7c600c8a0b8e2b4366f38c97804c2844;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/DispatchType/CustomPostLoad.pm b/t/lib/TestApp/DispatchType/CustomPostLoad.pm new file mode 100644 index 0000000..fcd6145 --- /dev/null +++ b/t/lib/TestApp/DispatchType/CustomPostLoad.pm @@ -0,0 +1,10 @@ +package TestApp::DispatchType::CustomPostLoad; +use strict; +use warnings; +use base qw/Catalyst::DispatchType::Path/; + +# Never match anything.. +sub match { } + +1; +