Fix the way Catalyst::Plugin::Server adds custom dispatch types
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / DispatchType / CustomPreLoad.pm
diff --git a/t/lib/TestApp/DispatchType/CustomPreLoad.pm b/t/lib/TestApp/DispatchType/CustomPreLoad.pm
new file mode 100644 (file)
index 0000000..277779a
--- /dev/null
@@ -0,0 +1,10 @@
+package TestApp::DispatchType::CustomPreLoad;
+use strict;
+use warnings;
+use base qw/Catalyst::DispatchType::Path/;
+
+# Never match anything..
+sub match { }
+
+1;
+