From: Dave Rolsky Date: Sun, 13 Dec 2009 18:19:25 +0000 (-0600) Subject: Add XS & C files to no tabs check X-Git-Tag: 0.96~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=733125e8f9722371c6a8f7c9a31df4334495a169;hp=86a4d8730cfe673db674c692f7703632b700c7c9;p=gitmo%2FClass-MOP.git Add XS & C files to no tabs check --- diff --git a/xt/author/tabs.t b/xt/author/tabs.t index 1b9c5b9..cf75fd2 100644 --- a/xt/author/tabs.t +++ b/xt/author/tabs.t @@ -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'); -