check test order
John Napiorkowski [Thu, 12 Mar 2015 21:14:41 +0000 (16:14 -0500)]
t/arg_constraints.t

index 20ff1ba..e4a2593 100644 (file)
@@ -22,8 +22,8 @@ use HTTP::Request::Common;
     $c->res->body('many_ints');
   }
 
-  sub int_priority :Path('priority_test') Args(Int) { $_[1]->res->body('int_priority') }
   sub any_priority :Path('priority_test') Args(1) { $_[1]->res->body('any_priority') }
+  sub int_priority :Path('priority_test') Args(Int) { $_[1]->res->body('int_priority') }
 
   sub default :Default {
     my ($self, $c, $int) = @_;