9 unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_notabs') ) {
10 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_notabs');
12 ? die ("Failed to load release-testing module requirements: $missing")
13 : plan skip_all => "Test needs: $missing"
16 Test::NoTabs::all_perl_files_ok(
17 qw/t xt lib script examples maint .generated_pod/,
20 # Changes is not a "perl file", hence checked separately
21 Test::NoTabs::notabs_ok('Changes');
23 # FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing
24 # https://github.com/schwern/test-more/issues/14