Author: jkeenan
Date: Sat Feb 16 19:00:02 2008
New Revision: 25784

Modified:
   branches/tcif/t/steps/auto_backtrace-01.t
   branches/tcif/t/steps/auto_backtrace-02.t
   branches/tcif/t/steps/auto_fink-02.t
   branches/tcif/t/steps/auto_fink-03.t
   branches/tcif/t/steps/auto_fink-04.t
   branches/tcif/t/steps/auto_fink-05.t
   branches/tcif/t/steps/auto_fink-06.t
   branches/tcif/t/steps/auto_fink-07.t
   branches/tcif/t/steps/auto_fink-08.t
   branches/tcif/t/steps/auto_fink-09.t

Log:
Specify exact number of tests in plan.

Modified: branches/tcif/t/steps/auto_backtrace-01.t
==============================================================================
--- branches/tcif/t/steps/auto_backtrace-01.t   (original)
+++ branches/tcif/t/steps/auto_backtrace-01.t   Sat Feb 16 19:00:02 2008
@@ -5,7 +5,7 @@
 
 use strict;
 use warnings;
-use Test::More qw(no_plan); # tests => 11;
+use Test::More tests =>  8;
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::backtrace');

Modified: branches/tcif/t/steps/auto_backtrace-02.t
==============================================================================
--- branches/tcif/t/steps/auto_backtrace-02.t   (original)
+++ branches/tcif/t/steps/auto_backtrace-02.t   Sat Feb 16 19:00:02 2008
@@ -5,7 +5,7 @@
 
 use strict;
 use warnings;
-use Test::More qw(no_plan); # tests => 15;
+use Test::More tests => 12;
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::backtrace');

Modified: branches/tcif/t/steps/auto_fink-02.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-02.t        (original)
+++ branches/tcif/t/steps/auto_fink-02.t        Sat Feb 16 19:00:02 2008
@@ -5,7 +5,7 @@
 
 use strict;
 use warnings;
-use Test::More qw(no_plan); # tests => 12;
+use Test::More tests =>  9;
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::fink');

Modified: branches/tcif/t/steps/auto_fink-03.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-03.t        (original)
+++ branches/tcif/t/steps/auto_fink-03.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-#plan( tests => 12 );
-plan qw( no_plan );
+plan( tests =>  9 );
+# plan qw( no_plan );
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::fink');

Modified: branches/tcif/t/steps/auto_fink-04.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-04.t        (original)
+++ branches/tcif/t/steps/auto_fink-04.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-#plan( tests => 12 );
-plan( 'no_plan' );
+plan( tests =>  9 );
+# plan qw( no_plan );
 use Carp;
 use File::Temp;
 use lib qw( lib t/configure/testlib );

Modified: branches/tcif/t/steps/auto_fink-05.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-05.t        (original)
+++ branches/tcif/t/steps/auto_fink-05.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-# plan( tests => 12 );
-plan( 'no_plan' );
+plan( tests =>  9 );
+# plan qw( no_plan );
 use Carp;
 use File::Temp;
 use lib qw( lib t/configure/testlib );

Modified: branches/tcif/t/steps/auto_fink-06.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-06.t        (original)
+++ branches/tcif/t/steps/auto_fink-06.t        Sat Feb 16 19:00:02 2008
@@ -5,7 +5,7 @@
 
 use strict;
 use warnings;
-use Test::More qw(no_plan); # tests => 13;
+use Test::More tests => 10;
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::fink');

Modified: branches/tcif/t/steps/auto_fink-07.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-07.t        (original)
+++ branches/tcif/t/steps/auto_fink-07.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-# plan( tests => 13 );
-plan qw( no_plan );
+plan( tests => 10 );
+# plan qw( no_plan );
 use Carp;
 use lib qw( lib t/configure/testlib );
 use_ok('config::auto::fink');

Modified: branches/tcif/t/steps/auto_fink-08.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-08.t        (original)
+++ branches/tcif/t/steps/auto_fink-08.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-# plan( tests => 13 );
-plan( 'no_plan' );
+plan( tests => 11 );
+# plan( 'no_plan' );
 use Carp;
 use File::Temp;
 use lib qw( lib t/configure/testlib );

Modified: branches/tcif/t/steps/auto_fink-09.t
==============================================================================
--- branches/tcif/t/steps/auto_fink-09.t        (original)
+++ branches/tcif/t/steps/auto_fink-09.t        Sat Feb 16 19:00:02 2008
@@ -7,8 +7,8 @@
 use warnings;
 use Test::More;
 plan( skip_all => 'Fink is Darwin only' ) unless $^O =~ /darwin/;
-# plan( tests => 13 );
-plan( 'no_plan' );
+plan( tests => 11 );
+# plan( 'no_plan' );
 use Carp;
 use File::Temp;
 use lib qw( lib t/configure/testlib );

Reply via email to