whitespace cleanup
[catagits/Catalyst-Devel.git] / t / render_share_dir_file.t
index 529c74f..864ea8c 100644 (file)
@@ -1,7 +1,6 @@
 use strict;
 use warnings;
-use FindBin qw/$Bin/;
-use lib "$Bin/lib";
+use lib "t/lib";
 use Catalyst::Helper;
 use Test::More;
 
@@ -12,7 +11,7 @@ use File::Temp qw/tempfile/;
 my ($fh, $fn) = tempfile;
 close $fh;
 
-ok( $helper->render_sharedir_file('script/myapp_cgi.pl.tt', $fn, { appprefix  => 'fnargh' }), "sharedir file rendered" ); 
+ok( $helper->render_sharedir_file('script/myapp_cgi.pl.tt', $fn, { appprefix  => 'fnargh' }), "sharedir file rendered" );
 ok -r $fn;
 ok -s $fn;
 unlink $fn;