cleaning up stuff
[gitmo/MooseX-Daemonize.git] / t / 30.with_pid_file.t
index 61414a7..135673b 100644 (file)
@@ -36,15 +36,13 @@ $ENV{MX_DAEMON_STDERR} = catfile($CWD, 'Err.txt');
         
         # this tests our bad PID 
         # cleanup functionality.
-        print "Our parent PID is " . $self->pidfile->pid . "\n";
+        print "Our parent PID is " . $self->pidfile->pid . "\n" if ::DEBUG;
         
         $self->daemonize;
         return unless $self->is_daemon;
         
-        $self->pidfile->write;
-        
         # make it easy to find with ps
-        $0 = 'test-app';
+        $0 = 'test-app-2';
         $SIG{INT} = sub { 
             print "Got INT! Oh Noes!"; 
             $self->pidfile->remove;
@@ -106,3 +104,5 @@ if (DEBUG) {
 ok(!$p->is_running, '... the daemon process is no longer running (' . $p->pid . ')');
 ok(!(-e $PIDFILE), '... the PID file has been removed');
 
+unlink $ENV{MX_DAEMON_STDOUT};
+unlink $ENV{MX_DAEMON_STDERR};