fix bad bugtracker URL
[gitmo/MooseX-Daemonize.git] / t / 10.pidfile.t
index 66aa30f..e515bc6 100644 (file)
@@ -1,5 +1,3 @@
-#!/usr/bin/perl
-
 use strict;
 use warnings;
 
@@ -27,7 +25,7 @@ BEGIN {
     );
 
     is($f->file->slurp(chomp => 1), $f->pid, '... the PID in the file is correct');
-    
+
     ok($f->is_running, '... it is running too');
 
     is(
@@ -55,8 +53,8 @@ BEGIN {
 
     is($f->file->slurp(chomp => 1), $f->pid, '... the PID in the file is correct');
     is($f->pid, $$, '... the PID is our current process');
-    
-    ok($f->is_running, '... it is running too');    
+
+    ok($f->is_running, '... it is running too');
 
     is(
         exception { $f->remove },
@@ -69,7 +67,7 @@ BEGIN {
 
 {
     my $PID = 9999;
-    
+
     my $f = MooseX::Daemonize::Pid::File->new(
         file => [ 't', 'baz.pid' ],
         pid  => $PID,
@@ -77,7 +75,7 @@ BEGIN {
     isa_ok($f, 'MooseX::Daemonize::Pid::File');
 
     isa_ok($f->file, 'Path::Class::File');
-    
+
     is($f->pid, $PID, '... the PID is our made up PID');
 
     is(