CatalystX::CRUD was a bug in that module's test suite - RT#42323
[catagits/Catalyst-Runtime.git] / Makefile.PL
index 15b0374..a5ee467 100644 (file)
@@ -126,6 +126,9 @@ check_conflicts();
 # Nicked straight from Moose!
 sub check_conflicts {
     my %conflicts = (
+        'CatalystX::CRUD'                  => '0.37',
+        'Catalyst::Action::RenderView'     => '0.08',
+        'Catalyst::Plugin::DebugCookie'    => '0.999002',
         'Catalyst::Plugin::Authentication' => '0.100092',
         'CatalystX::Imports'               => '0.03',
         'Catalyst-Plugin-HashedCookies'    => '1.03',
@@ -133,7 +136,7 @@ sub check_conflicts {
 
     my $found = 0;
     for my $mod ( sort keys %conflicts ) {
-        eval "require $mod";
+        eval "require($mod)";
         next if $@;
 
         my $installed = $mod->VERSION();