Make M::I::ExtraTests fail more obvious
[gitmo/Class-MOP.git] / xt / author / tabs.t
CommitLineData
0156915c 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More;
7
8eval "use Test::NoTabs 0.8";
9plan skip_all => "Test::NoTabs 0.8 required for testing tabs" if $@;
10
733125e8 11for my $file ( qw( mop.c mop.h ), glob "xs/*xs" ) {
12 notabs_ok( $file, "$file is tab free" );
13}
14
0156915c 15# Module::Install has tabs, so we can't check 'inc' or ideally '.'
16all_perl_files_ok('lib', 't', 'xt');