Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / xt / eol.t
CommitLineData
0a87afc4 1use warnings;
2use strict;
3
4use Test::More;
5use lib 't/lib';
6use DBICTest;
7
d146b340 8require DBIx::Class;
9unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_eol') ) {
10 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_eol');
39c9c72d 11 (! DBICTest::RunMode->is_plain && ! DBICTest::RunMode->is_smoker )
d146b340 12 ? die ("Failed to load release-testing module requirements: $missing")
13 : plan skip_all => "Test needs: $missing"
0a87afc4 14}
15
8273e845 16Test::EOL::all_perl_files_ok({ trailing_whitespace => 1 },
17 qw/t xt lib script/,
18 DBICTest::RunMode->is_author ? ('maint') : (),
19);
0a87afc4 20
8273e845 21# FIXME - Test::EOL declares 'no_plan' which conflicts with done_testing
22# https://github.com/schwern/test-more/issues/14
d146b340 23#done_testing;