Smarter todoification (this doesn't sound like a bad idea for CPAN in general)
[dbsrgits/DBIx-Class.git] / t / 55namespaces_cleaned.t
index 176de5e..af2ee4d 100644 (file)
@@ -60,7 +60,7 @@ my @modules = grep {
     (); # empty RV for @modules
   };
 
-} find_modules();
+} grep { $_ !~ /_TempExtlib/ } find_modules();
 
 # have an exception table for old and/or weird code we are not sure
 # we *want* to clean in the first place
@@ -83,6 +83,10 @@ my $skip_idx = { map { $_ => 1 } (
   # utility classes, not part of the inheritance chain
   'DBIx::Class::ResultSource::RowParser::Util',
   'DBIx::Class::_Util',
+
+  # FIXME - this can't be right - Role::Tiny's with() seems to
+  # import Role::Tiny::does_role() at a dones() slot... wtf?
+  'DBIx::Class::ResultSet::WithDQMethods',
 ) };
 
 my $has_moose = eval { require Moose::Util };