print timestamp and CMOP, Moose versions for author tests
[gitmo/Moose.git] / xt / author / pod_coverage.t
index 93232d8..866845f 100644 (file)
@@ -6,12 +6,12 @@ use warnings;
 use Test::More;
 
 use Test::Requires {
-    'Test::Pod::Coverage' => '1.04', # skip all if not installed
+    'Test::Pod::Coverage' => '1.04',    # skip all if not installed
 };
 
 # This is a stripped down version of all_pod_coverage_ok which lets us
 # vary the trustme parameter per module.
-my @modules = all_modules();
+my @modules = grep { !/Accessor::Native.*$/ } all_modules();
 plan tests => scalar @modules;
 
 my %trustme = (
@@ -58,6 +58,7 @@ my %trustme = (
             )
     ],
     'Moose::Meta::Method::Destructor' => [ 'initialize_body', 'options' ],
+    'Moose::Meta::Method::Meta'       => [ 'wrap' ],
     'Moose::Meta::Role'               => [
         qw( alias_method
             get_method_modifier_list
@@ -101,6 +102,7 @@ my %trustme = (
 );
 
 for my $module ( sort @modules ) {
+
     my $trustme = [];
     if ( $trustme{$module} ) {
         my $methods = join '|', @{ $trustme{$module} };