Since .generated_pod is no longer shipped in-dist, move it to maint/
[dbsrgits/DBIx-Class.git] / xt / notabs.t
CommitLineData
281738a4 1use warnings;
2use strict;
3
4use Test::More;
281738a4 5use lib 't/lib';
6use DBICTest;
a8064486 7
d146b340 8require DBIx::Class;
9unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_notabs') ) {
10 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_notabs');
20884f55 11 $ENV{RELEASE_TESTING}
d146b340 12 ? die ("Failed to load release-testing module requirements: $missing")
13 : plan skip_all => "Test needs: $missing"
a8064486 14}
15
f90896ae 16Test::NoTabs::all_perl_files_ok(
95252a8c 17 qw/t xt lib script examples maint/,
f90896ae 18);
281738a4 19
a8b66abc 20# Changes is not a "perl file", hence checked separately
21Test::NoTabs::notabs_ok('Changes');
22
8273e845 23# FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing
24# https://github.com/schwern/test-more/issues/14
d146b340 25#done_testing;