remove erroneous dispatch test
Matt S Trout [Mon, 30 Nov 2009 22:26:38 +0000 (22:26 +0000)]
t/dispatch_parser.t

index 4608893..334ceab 100644 (file)
@@ -115,16 +115,6 @@ ok(
 }
 
 {
-   my $combi = $dp->parse_dispatch_specification('?foo=');
-
-   is_deeply(
-     [ $combi->({ PATH_INFO => '/?foo=' }) ],
-     [ {}, 'one' ],
-     '/post/one parses out one'
-   );
-}
-
-{
    my $or = $dp->parse_dispatch_specification('GET|POST');
 
    foreach my $meth (qw(GET POST)) {