remove and tweak tests that depend on Params::Nested to resolve known regression
John Napiorkowski [Sat, 15 Jun 2013 13:59:23 +0000 (09:59 -0400)]
t/lib/TestAppUnicode.pm
t/lib/TestAppWithoutUnicode.pm
t/unicode_plugin_nested_params.t

index 7d66522..55359f7 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use TestLogger;
 use base qw/Catalyst/;
-use Catalyst qw/Unicode::Encoding Params::Nested/;
+use Catalyst qw/Unicode::Encoding/;
 
 __PACKAGE__->config(
   'name' => 'TestAppUnicode',
index 5cb3d81..f0ffa1e 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use TestLogger;
 use base qw/Catalyst/;
-use Catalyst qw/Params::Nested/;
+use Catalyst qw//;
 
 __PACKAGE__->config('name' => 'TestAppWithoutUnicode');
 
index 11e884e..b31f4ce 100644 (file)
@@ -7,7 +7,7 @@ use utf8;
 
 # setup library path
 use FindBin qw($Bin);
-use lib "$Bin/../lib";
+use lib "$Bin/lib";
 
 BEGIN { eval { require Catalyst::Plugin::Params::Nested; 1; } ||
     plan skip_all => 'Need Catalyst::Plugin::Params::Nested' }