Add XS & C files to no tabs check
Dave Rolsky [Sun, 13 Dec 2009 18:19:25 +0000 (12:19 -0600)]
xt/author/tabs.t

index 1b9c5b9..cf75fd2 100644 (file)
@@ -8,6 +8,9 @@ use Test::More;
 eval "use Test::NoTabs 0.8";
 plan skip_all => "Test::NoTabs 0.8 required for testing tabs" if $@;
 
+for my $file ( qw( mop.c mop.h ), glob "xs/*xs" ) {
+    notabs_ok( $file, "$file is tab free" );
+}
+
 # Module::Install has tabs, so we can't check 'inc' or ideally '.'
 all_perl_files_ok('lib', 't', 'xt');
-