Release commit for 0.006022
[p5sagit/Devel-Declare.git] / t / sugar.t
index a582e4b..7cd4c54 100644 (file)
--- a/t/sugar.t
+++ b/t/sugar.t
@@ -1,3 +1,5 @@
+use strict;
+use warnings;
 use Devel::Declare;
 
 BEGIN {
@@ -64,7 +66,7 @@ my ($test_method1, $test_method2, @test_list);
 
 }
 
-use Test::More 'no_plan';
+use Test::More 0.88;
 
 my $o = DeclareTest->new(attr => "value");
 
@@ -87,3 +89,5 @@ is($o->$test_method1('no', 'yes'), 'value, yes', 'anon method with @_ ok');
 is($o->$test_method2('this'), 'DeclareTest2, this', 'anon method with proto ok');
 
 #warn map { $_->() } @test_list;
+
+done_testing;