_quote is now properly handled in SQLA
[dbsrgits/DBIx-Class.git] / t / 07eol.t
CommitLineData
0a87afc4 1use warnings;
2use strict;
3
4use Test::More;
5use lib 't/lib';
6use DBICTest;
7
0a87afc4 8# Don't run tests for installs
9unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) {
10 plan( skip_all => "Author tests not required for installation" );
11}
d146b340 12
13plan skip_all => 'Test::EOL very broken';
14
15require DBIx::Class;
16unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_eol') ) {
17 my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('test_eol');
18 $ENV{RELEASE_TESTING} || DBICTest::AuthorCheck->is_author
19 ? die ("Failed to load release-testing module requirements: $missing")
20 : plan skip_all => "Test needs: $missing"
0a87afc4 21}
22
c2b5c835 23TODO: {
24 local $TODO = 'Do not fix those yet - we have way too many branches out there, merging will be hell';
d146b340 25 Test::EOL::all_perl_files_ok({ trailing_whitespace => 1}, qw/t lib script maint/);
c2b5c835 26}
0a87afc4 27
d146b340 28# FIXME - need to fix Test::EOL
29#done_testing;