Check more files for notabs/eol
Peter Rabbitson [Wed, 11 Apr 2012 07:24:01 +0000 (09:24 +0200)]
examples/Schema/testdb.pl
xt/eol.t
xt/notabs.t

index c608f45..a65db0f 100644 (file)
@@ -55,7 +55,6 @@ sub get_tracks_by_artist {
     print "\n";
 }
 
-
 sub get_cd_by_track {
     my $tracktitle = shift;
     print "get_cd_by_track($tracktitle):\n";
@@ -88,8 +87,6 @@ sub get_cds_by_artist {
     print "\n";
 }
 
-
-
 sub get_artist_by_track {
     my $tracktitle = shift;
     print "get_artist_by_track($tracktitle):\n";
@@ -107,7 +104,6 @@ sub get_artist_by_track {
     print $artist->name . "\n\n";
 }
 
-         
 sub get_artist_by_cd {
     my $cdtitle = shift;
     print "get_artist_by_cd($cdtitle):\n";
index ab2d9a1..4baf714 100644 (file)
--- a/xt/eol.t
+++ b/xt/eol.t
@@ -14,10 +14,13 @@ unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_eol') ) {
 }
 
 Test::EOL::all_perl_files_ok({ trailing_whitespace => 1 },
-  qw/t xt lib script/,
+  qw/t xt lib script examples/,
   DBICTest::RunMode->is_author ? ('maint') : (),
 );
 
+# Changes is not a "perl file", hence checked separately
+Test::EOL::eol_unix_ok('Changes', { trailing_whitespace => 1 });
+
 # FIXME - Test::EOL declares 'no_plan' which conflicts with done_testing
 # https://github.com/schwern/test-more/issues/14
 #done_testing;
index 7734b75..15e218f 100644 (file)
@@ -14,10 +14,13 @@ unless ( DBIx::Class::Optional::Dependencies->req_ok_for ('test_notabs') ) {
 }
 
 Test::NoTabs::all_perl_files_ok(
-  qw/t xt lib script/,
+  qw/t xt lib script examples/,
   DBICTest::RunMode->is_author ? ('maint') : (),
 );
 
+# Changes is not a "perl file", hence checked separately
+Test::NoTabs::notabs_ok('Changes');
+
 # FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing
 # https://github.com/schwern/test-more/issues/14
 #done_testing;