fix typo and update test
[catagits/Catalyst-Runtime.git] / t / arg_constraints.t
index 86b5259..20ff1ba 100644 (file)
@@ -14,10 +14,17 @@ use HTTP::Request::Common;
 
   sub an_int :Local Args(Int) {
     my ($self, $c, $int) = @_;
-    #use Devel::Dwarn; Dwarn $self;
     $c->res->body('an_int');
   }
 
+  sub many_ints :Local Args(ArrayRef[Int]) {
+    my ($self, $c, $int) = @_;
+    $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 default :Default {
     my ($self, $c, $int) = @_;
     $c->res->body('default');
@@ -28,6 +35,7 @@ use HTTP::Request::Common;
   package MyApp;
   use Catalyst;
 
+  #MyApp->config(show_internal_actions => 1);
   MyApp->setup;
 }
 
@@ -43,5 +51,34 @@ use Catalyst::Test 'MyApp';
   is $res->content, 'default';
 }
 
+{
+  my $res = request '/many_ints/1';
+  is $res->content, 'many_ints';
+}
+
+{
+  my $res = request '/many_ints/1/2';
+  is $res->content, 'many_ints';
+}
+
+{
+  my $res = request '/many_ints/1/2/3';
+  is $res->content, 'many_ints';
+}
+
+{
+  my $res = request '/many_ints/1/2/a';
+  is $res->content, 'default';
+}
+
+{
+  my $res = request '/priority_test/1';
+  is $res->content, 'int_priority';
+}
+{
+  my $res = request '/priority_test/a';
+  is $res->content, 'any_priority';
+}
+
 done_testing;