Adding PidFile implementation and making Daemonize use that
[gitmo/MooseX-Daemonize.git] / t / 02.stdout.t
index b506f25..f76a392 100644 (file)
@@ -20,17 +20,18 @@ my $Test = Test::Builder->new;
     sub output_ok {
         my ($self) = @_;
         my $count = 1;
-        while (1) {
+        for ( 0 .. 3 ) {
             $Test->ok( $count++, "$count output_ok" );
             sleep(1);
         }
-
     }
     no Moose;
 }
 
 package main;
 use Cwd;
+use strict;
+use warnings;
 
 ## Try to make sure we are in the test directory
 chdir 't' if ( Cwd::cwd() !~ m|/t$| );
@@ -40,8 +41,16 @@ my $app = TestOutput->new(
     test_output => join( '/', $cwd, 'results' ),
 );
 daemonize_ok( $app, 'child forked okay' );
-sleep(5);    # give ourself a chance to produce some output
-$app->stop( no_exit => 1 );
+sleep(3);    # give ourself a chance to produce some output
+
+my $warnings = "";
+{
+       local $SIG{__WARN__} = sub { $warnings .= $_[0]; warn @_ };
+       $app->stop( no_exit => 1 );
+}
+
+is($warnings, "", "No warnings from stop");
 
 check_test_output($app);
 unlink( $app->test_output );
+exit;