X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=xt%2Fnotabs.t;h=3c854f9c9ed4b2b8e746558cf4d8cfbef888c9d3;hb=7c0072ba45e55c65ed00bc0e0b33e21ede3c7c7b;hp=beb623eafd32656c43e514b37fefb0e8ae856e80;hpb=8273e845426f0187b4ad6c4a1b42286fa09a648f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/xt/notabs.t b/xt/notabs.t index beb623e..3c854f9 100644 --- a/xt/notabs.t +++ b/xt/notabs.t @@ -2,22 +2,48 @@ use warnings; use strict; use Test::More; +use File::Glob 'bsd_glob'; use lib 't/lib'; use DBICTest; require DBIx::Class; unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_notabs') ) { my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_notabs'); - (! DBICTest::RunMode->is_plain && ! DBICTest::RunMode->is_smoker ) + $ENV{RELEASE_TESTING} ? die ("Failed to load release-testing module requirements: $missing") : plan skip_all => "Test needs: $missing" } +# FIXME - temporary workaround for RT#82033 +{ + no warnings 'redefine'; + *Test::NoTabs::_is_perl_module = sub { + $_[0] =~ /\.(?:pm|pod)$/i || $_[0] =~ /::/; + } +} + Test::NoTabs::all_perl_files_ok( - qw/t xt lib script/, - DBICTest::RunMode->is_author ? ('maint') : (), + qw/t xt lib script examples maint/, ); +# check some non-"perl files" in the root separately +# use .gitignore as a guide of what to skip +# (or do not test at all if no .gitignore is found) +if (open(my $gi, '<', '.gitignore')) { + my $skipnames; + while (my $ln = <$gi>) { + next if $ln =~ /^\s*$/; + chomp $ln; + $skipnames->{$_}++ for bsd_glob($ln); + } + + for my $fn (bsd_glob('*')) { + next if $skipnames->{$fn}; + next unless -f $fn; + Test::NoTabs::notabs_ok($fn); + } +} + # FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing # https://github.com/schwern/test-more/issues/14 #done_testing;