ok,.. more tests and stuff
[gitmo/MooseX-Daemonize.git] / t / 20.core.t
index 811f959..49ca097 100644 (file)
@@ -4,6 +4,7 @@ use strict;
 use warnings;
 
 use Cwd;
+use File::Spec::Functions;
 
 use Test::More no_plan => 1;
 use Test::Exception;
@@ -14,7 +15,9 @@ BEGIN {
     use_ok('MooseX::Daemonize::Pid');    
 }
 
-my $CWD = Cwd::cwd;
+my $CWD                = Cwd::cwd;
+$ENV{MX_DAEMON_STDOUT} = catfile($CWD, 'Out.txt');
+$ENV{MX_DAEMON_STDERR} = catfile($CWD, 'Err.txt');
 
 {
     package MyFooDaemon;
@@ -74,17 +77,17 @@ isa_ok($p, 'MooseX::Daemonize::Pid');
 ok($p->is_running, '... the daemon process is running (' . $p->pid . ')');
 
 my $pid = $p->pid;
-#diag `ps $pid`;
-#diag "-------";
-#diag `ps -x | grep test-app`;
-#diag "-------";
-#diag "killing $pid";
+diag `ps $pid`;
+diag "-------";
+diag `ps -x | grep test-app`;
+diag "-------";
+diag "killing $pid";
 kill INT => $p->pid;
-#diag "killed $pid";
+diag "killed $pid";
 sleep(2);
-#diag `ps $pid`;
-#diag "-------";
-#diag `ps -x | grep test-app`;
+diag `ps $pid`;
+diag "-------";
+diag `ps -x | grep test-app`;
 
 ok(!$p->is_running, '... the daemon process is no longer running (' . $p->pid . ')');