From: Peter Rabbitson Date: Mon, 5 Nov 2012 08:31:44 +0000 (+0100) Subject: Ask for newer CAG which asks for bugfixed CXSA X-Git-Tag: v0.08204~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=8b4d80641f3fda13ee00e6615183265b121e53b1 Ask for newer CAG which asks for bugfixed CXSA --- diff --git a/Makefile.PL b/Makefile.PL index 8193995..9747fc4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -54,7 +54,7 @@ my $runtime_requires = { 'Sub::Name' => '0.04', # pure-perl (FatPack-able) libs - 'Class::Accessor::Grouped' => '0.10002', + 'Class::Accessor::Grouped' => '0.10005', 'Class::C3::Componentised' => '1.0009', 'Class::Inspector' => '1.24', 'Class::Method::Modifiers' => '1.06', diff --git a/t/55namespaces_cleaned.t b/t/55namespaces_cleaned.t index b7d81a8..e87cab7 100644 --- a/t/55namespaces_cleaned.t +++ b/t/55namespaces_cleaned.t @@ -117,17 +117,10 @@ for my $mod (@modules) { my $gv = svref_2object($all_method_like{$name})->GV; my $origin = $gv->STASH->NAME; - TODO: { - local $TODO; - if ($name =~ /^__CAG_/) { - $TODO = 'CAG does not clean its BEGIN constants'; - } - - is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod - ? '' - : " (inherited by $mod)" - )); - } + is ($gv->NAME, $name, "Properly named $name method at $origin" . ($origin eq $mod + ? '' + : " (inherited by $mod)" + )); next if $seen->{"${origin}:${name}"}++;