3c854f9c9ed4b2b8e746558cf4d8cfbef888c9d3
[dbsrgits/DBIx-Class.git] / xt / notabs.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5 use File::Glob 'bsd_glob';
6 use lib 't/lib';
7 use DBICTest;
8
9 require DBIx::Class;
10 unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_notabs') ) {
11   my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_notabs');
12   $ENV{RELEASE_TESTING}
13     ? die ("Failed to load release-testing module requirements: $missing")
14     : plan skip_all => "Test needs: $missing"
15 }
16
17 # FIXME - temporary workaround for RT#82033
18 {
19   no warnings 'redefine';
20   *Test::NoTabs::_is_perl_module = sub {
21     $_[0] =~ /\.(?:pm|pod)$/i || $_[0] =~ /::/;
22   }
23 }
24
25 Test::NoTabs::all_perl_files_ok(
26   qw/t xt lib script examples maint/,
27 );
28
29 # check some non-"perl files" in the root separately
30 # use .gitignore as a guide of what to skip
31 # (or do not test at all if no .gitignore is found)
32 if (open(my $gi, '<', '.gitignore')) {
33   my $skipnames;
34   while (my $ln = <$gi>) {
35     next if $ln =~ /^\s*$/;
36     chomp $ln;
37     $skipnames->{$_}++ for bsd_glob($ln);
38   }
39
40   for my $fn (bsd_glob('*')) {
41     next if $skipnames->{$fn};
42     next unless -f $fn;
43     Test::NoTabs::notabs_ok($fn);
44   }
45 }
46
47 # FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing
48 # https://github.com/schwern/test-more/issues/14
49 #done_testing;