Added docs explaining missing route for /go_here
Upasana [Fri, 3 Jan 2014 15:29:43 +0000 (20:29 +0530)]
Signed-off-by: John Napiorkowski <jjnapiork@cpan.org>

t/lib/TestApp/Controller/Root.pm

index b626bdb..5895223 100644 (file)
@@ -83,6 +83,8 @@ sub test_redirect :Global {
     # Don't set content_type
     # Don't set body
     $c->res->redirect('/go_here');
+    # route for /go_here doesn't exist
+    # it is only for checking HTTP response code, content-type etc.
 }
 
 sub test_redirect_uri_for :Global {
@@ -90,6 +92,8 @@ sub test_redirect_uri_for :Global {
     # Don't set content_type
     # Don't set body
     $c->res->redirect($c->uri_for('/go_here'));
+    # route for /go_here doesn't exist
+    # it is only for checking HTTP response code, content-type etc.
 }
 
 sub test_redirect_with_contenttype :Global {
@@ -97,6 +101,8 @@ sub test_redirect_with_contenttype :Global {
     # set content_type but don't set body
     $c->res->content_type('image/jpeg');
     $c->res->redirect('/go_here');
+    # route for /go_here doesn't exist
+    # it is only for checking HTTP response code, content-type etc.
 }
 
 sub test_redirect_with_content :Global {
@@ -104,6 +110,8 @@ sub test_redirect_with_content :Global {
     $c->res->content_type('text/plain');
     $c->res->body('Please kind sir, I beg you to go to /go_here.');
     $c->res->redirect('/go_here');
+    # route for /go_here doesn't exist
+    # it is only for checking HTTP response code, content-type etc.
 }
 
 sub end : Private {