Fix Pod
Tomas Doran [Sat, 30 Jun 2012 10:16:27 +0000 (11:16 +0100)]
lib/Catalyst/Plugin/Authentication.pm
t/author/eol.t [new file with mode: 0644]
t/author/notabs.t

index 1438f29..3408b75 100644 (file)
@@ -1128,7 +1128,7 @@ Jay Kuri, C<jayk@cpan.org> - Large rewrite
 
 Tomas Doran (t0m), C<bobtfish@bobtfish.net>
 
-=hasd1 ADDITIONAL CONTRIBUTORS
+=head1 ADDITIONAL CONTRIBUTORS
 
 =over
 
@@ -1136,7 +1136,7 @@ Tomas Doran (t0m), C<bobtfish@bobtfish.net>
 
 =item David Kamholz
 
-=itm kmx
+=item kmx
 
 =item Nigel Metheringham
 
diff --git a/t/author/eol.t b/t/author/eol.t
new file mode 100644 (file)
index 0000000..480ecfe
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/env perl
+
+use Test::More;
+eval {require Test::EOL; };
+
+if ($@) {
+    plan skip_all => 'Need Test::EOL installed for line ending tests';
+    exit 0;
+}
+Test::EOL->import;
+all_perl_files_ok();
+
index ad02a43..5cd3ae0 100644 (file)
@@ -1,6 +1,10 @@
 use strict;
 use warnings;
+
+use File::Spec;
+use FindBin ();
 use Test::More;
 use Test::NoTabs;
 
-all_perl_files_ok;
+all_perl_files_ok(qw/lib/);
+