From: Dave Rolsky Date: Mon, 5 Oct 2009 19:09:31 +0000 (-0500) Subject: s/no_plan => 1/'no_plan'/g X-Git-Tag: 0.15~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=10769ed347f340ee0e81d85933ae8f82ff0413da;p=gitmo%2FMooseX-Daemonize.git s/no_plan => 1/'no_plan'/g --- diff --git a/t/02.stdout.t b/t/02.stdout.t index d7ed212..462e817 100644 --- a/t/02.stdout.t +++ b/t/02.stdout.t @@ -1,4 +1,4 @@ -use Test::More no_plan => 1; +use Test::More 'no_plan'; use Test::Builder; use Test::MooseX::Daemonize; use MooseX::Daemonize; diff --git a/t/20.core.t b/t/20.core.t index 6399dca..0f14dab 100644 --- a/t/20.core.t +++ b/t/20.core.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More no_plan => 1; +use Test::More 'no_plan'; use Test::Exception; use Test::Moose; use File::Temp qw(tempdir); diff --git a/t/30.with_pid_file.t b/t/30.with_pid_file.t index 82a7f4b..e7e439c 100644 --- a/t/30.with_pid_file.t +++ b/t/30.with_pid_file.t @@ -5,7 +5,7 @@ use warnings; use File::Spec::Functions; -use Test::More no_plan => 1; +use Test::More 'no_plan'; use Test::Exception; use Test::Moose; use File::Temp qw(tempdir); diff --git a/t/31.with_pid_file_and_poe.t b/t/31.with_pid_file_and_poe.t index 2fc888c..23ac3bb 100644 --- a/t/31.with_pid_file_and_poe.t +++ b/t/31.with_pid_file_and_poe.t @@ -16,7 +16,7 @@ my $dir = tempdir( CLEANUP => 1 ); BEGIN { eval 'use POE::Kernel;'; plan skip_all => "POE required for this test" if $@; - plan no_plan => 1; + plan 'no_plan'; use_ok('MooseX::Daemonize::Core'); }