Functionally void: Replace CRLF with LF
Alastair McGowan-Douglas [Wed, 29 Oct 2014 15:17:11 +0000 (15:17 +0000)]
t/lib/IncTestApp.pm

index a11b438..200e806 100644 (file)
@@ -1,46 +1,46 @@
-package IncTestApp;\r
-# FIXME: I have to do this because TestApp runs setup at compile time\r
-# Perhaps it would be better to let the tests run setup?\r
-\r
-use strict;\r
-use Catalyst;\r
-use FindBin;\r
-use TestLog;\r
-\r
-our $VERSION = '0.01';\r
-\r
-IncTestApp->config(\r
-    name => 'TestApp',\r
-    debug => 1,\r
-    static => {\r
-        include_path => [\r
-            IncTestApp->config->{root},\r
-        ]\r
-    },\r
-    'Plugin::Static::Simple' => {\r
-        include_path => [\r
-            IncTestApp->config->{root} . '/overlay',\r
-        ]\r
-    },\r
-);\r
-\r
-IncTestApp->log( TestLog->new );\r
-my @plugins = qw/Static::Simple/;\r
-\r
-# load the SubRequest plugin if available\r
-eval { \r
-    require Catalyst::Plugin::SubRequest; \r
-    die unless Catalyst::Plugin::SubRequest->VERSION ge '0.08';\r
-};\r
-push @plugins, 'SubRequest' unless ($@);\r
-\r
-IncTestApp->setup( @plugins );\r
-\r
-sub incpath_generator {\r
-    my $c = shift;\r
-    \r
-    return [ $c->config->{root} . '/incpath' ];\r
-}\r
-\r
-\r
-1;\r
+package IncTestApp;
+# FIXME: I have to do this because TestApp runs setup at compile time
+# Perhaps it would be better to let the tests run setup?
+
+use strict;
+use Catalyst;
+use FindBin;
+use TestLog;
+
+our $VERSION = '0.01';
+
+IncTestApp->config(
+    name => 'TestApp',
+    debug => 1,
+    static => {
+        include_path => [
+            IncTestApp->config->{root},
+        ]
+    },
+    'Plugin::Static::Simple' => {
+        include_path => [
+            IncTestApp->config->{root} . '/overlay',
+        ]
+    },
+);
+
+IncTestApp->log( TestLog->new );
+my @plugins = qw/Static::Simple/;
+
+# load the SubRequest plugin if available
+eval { 
+    require Catalyst::Plugin::SubRequest; 
+    die unless Catalyst::Plugin::SubRequest->VERSION ge '0.08';
+};
+push @plugins, 'SubRequest' unless ($@);
+
+IncTestApp->setup( @plugins );
+
+sub incpath_generator {
+    my $c = shift;
+    
+    return [ $c->config->{root} . '/incpath' ];
+}
+
+
+1;