Merge branch 'stable'
[gitmo/Class-MOP.git] / xt / author / tabs.t
CommitLineData
0156915c 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More;
7
0f352882 8use Test::Requires {
9 'Test::NoTabs' => '0.8', # skip all if not installed
10};
0156915c 11
733125e8 12for my $file ( qw( mop.c mop.h ), glob "xs/*xs" ) {
13 notabs_ok( $file, "$file is tab free" );
14}
15
0156915c 16# Module::Install has tabs, so we can't check 'inc' or ideally '.'
17all_perl_files_ok('lib', 't', 'xt');