whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / lib / TestContentNegotiation / Controller / Root.pm
index 60fe6f7..68a41b6 100644 (file)
@@ -10,7 +10,7 @@ sub start :Chained(/) PathPrefix CaptureArgs(0) { }
     sub is_json       : Chained('start') PathPart('') Consumes('application/json') Args(0) { pop->res->body('is_json1') }
     sub is_urlencoded : Chained('start') PathPart('') Consumes('application/x-www-form-urlencoded') Args(0) { pop->res->body('is_urlencoded1') }
     sub is_multipart  : Chained('start') PathPart('') Consumes('multipart/form-data') Args(0) { pop->res->body('is_multipart1') }
-      
+
     sub under :Chained('start') CaptureArgs(0) { }
 
       sub is_json_under       : Chained('under') PathPart('') Consumes(JSON) Args(0) { pop->res->body('is_json2') }
@@ -18,11 +18,11 @@ sub start :Chained(/) PathPrefix CaptureArgs(0) { }
       sub is_multipart_under  : Chained('under') PathPart('') Consumes(Multipart) Args(0) { pop->res->body('is_multipart2') }
 
       ## Or allow more than one type
-    
+
     sub multi :Chained('start') PathPart('') CaptureArgs(0) { }
-      
+
     sub is_more_than_one_1
-      : Chained('multi') 
+      : Chained('multi')
       : Consumes('application/x-www-form-urlencoded')
       : Consumes('multipart/form-data')
       : Args(0)
@@ -31,7 +31,7 @@ sub start :Chained(/) PathPrefix CaptureArgs(0) { }
     }
 
     sub is_more_than_one_2
-      : Chained('multi') 
+      : Chained('multi')
       : Consumes('HTMLForm')
       : Args(0)
     {
@@ -39,7 +39,7 @@ sub start :Chained(/) PathPrefix CaptureArgs(0) { }
     }
 
     sub is_more_than_one_3
-      : Chained('multi') 
+      : Chained('multi')
       : Consumes('application/x-www-form-urlencoded,multipart/form-data')
       : Args(0)
     {