Don't do bytes::length, just use length, tests to demonstrate the issue
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Root.pm
index afdf6db..5b29201 100644 (file)
@@ -1,5 +1,6 @@
 package TestApp::Controller::Root;
-
+use strict;
+use warnings;
 use base 'Catalyst::Controller';
 
 __PACKAGE__->config->{namespace} = '';
@@ -48,4 +49,8 @@ sub recursion_test : Local {
     $c->forward( 'recursion_test' );
 }
 
+sub end : Private {
+    my ($self,$c) = @_;
+}
+
 1;