From: John Napiorkowski Date: Thu, 12 Mar 2015 21:14:41 +0000 (-0500) Subject: check test order X-Git-Tag: 5.90089_002~44 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=b7791bd714d8a1d41f26bd3a371761ed8ab899cd check test order --- diff --git a/t/arg_constraints.t b/t/arg_constraints.t index 20ff1ba..e4a2593 100644 --- a/t/arg_constraints.t +++ b/t/arg_constraints.t @@ -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) = @_;