From: adam Date: Mon, 4 Dec 2006 00:04:55 +0000 (+0000) Subject: r55@latte: adam | 2006-12-03 16:09:26 -0800 X-Git-Tag: 0.67_01~53 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=6646fdc27add35e5421e516b1fcd98560bef0b96 r55@latte: adam | 2006-12-03 16:09:26 -0800 Removed the dreaded "no plan" --- diff --git a/t/catalyst-action-deserialize.t b/t/catalyst-action-deserialize.t index b524b48..7cce9ef 100644 --- a/t/catalyst-action-deserialize.t +++ b/t/catalyst-action-deserialize.t @@ -34,7 +34,7 @@ package main; use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 5; use YAML::Syck; use FindBin; use Data::Dump qw(dump); diff --git a/t/catalyst-action-rest.t b/t/catalyst-action-rest.t index d230662..8534732 100644 --- a/t/catalyst-action-rest.t +++ b/t/catalyst-action-rest.t @@ -92,7 +92,7 @@ package main; use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 17; use FindBin; use Data::Dump qw(dump); diff --git a/t/catalyst-action-serialize-accept.t b/t/catalyst-action-serialize-accept.t index 176c5e9..b67062e 100644 --- a/t/catalyst-action-serialize-accept.t +++ b/t/catalyst-action-serialize-accept.t @@ -43,7 +43,7 @@ package main; use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 3; use Data::Serializer; use FindBin; use Data::Dump qw(dump); diff --git a/t/catalyst-action-serialize-query.t b/t/catalyst-action-serialize-query.t index e2e6f96..c237872 100644 --- a/t/catalyst-action-serialize-query.t +++ b/t/catalyst-action-serialize-query.t @@ -36,7 +36,7 @@ package main; use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 3; use FindBin; use Data::Dump qw(dump); diff --git a/t/catalyst-action-serialize.t b/t/catalyst-action-serialize.t index 98ac990..7a3dbe3 100644 --- a/t/catalyst-action-serialize.t +++ b/t/catalyst-action-serialize.t @@ -44,7 +44,7 @@ package main; use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 7; use Data::Serializer; use FindBin; use Data::Dump qw(dump); diff --git a/t/data-serializer.t b/t/data-serializer.t index 740a24e..b5fff06 100644 --- a/t/data-serializer.t +++ b/t/data-serializer.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 29; use FindBin; use lib ( "$FindBin::Bin/lib", "$FindBin::Bin/../lib" ); diff --git a/t/json.t b/t/json.t index 2cbf35d..a5380de 100644 --- a/t/json.t +++ b/t/json.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 5; use FindBin; use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib"); diff --git a/t/xml-simple.t b/t/xml-simple.t index ccc9c00..d44b7bd 100644 --- a/t/xml-simple.t +++ b/t/xml-simple.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 5; use FindBin; use Data::Dump qw(dump); diff --git a/t/yaml-html.t b/t/yaml-html.t index fc6fa03..46f541f 100644 --- a/t/yaml-html.t +++ b/t/yaml-html.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 4; use YAML::Syck; use FindBin; use Data::Dump qw(dump); diff --git a/t/yaml.t b/t/yaml.t index 7559615..3478fc2 100644 --- a/t/yaml.t +++ b/t/yaml.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More tests => 5; use FindBin; use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");