X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F070_native_traits%2F208_trait_bool.t;h=a5cb91fe334fbd05884898f50ce1718cd7ca52e2;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=ef92860e84e88753f0d4629385a88b57dcb11742;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/070_native_traits/208_trait_bool.t b/t/070_native_traits/208_trait_bool.t index ef92860..a5cb91f 100644 --- a/t/070_native_traits/208_trait_bool.t +++ b/t/070_native_traits/208_trait_bool.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 8; +use Test::More; { package Room; @@ -40,3 +40,4 @@ $room->flip_switch; ok( !$room->is_lit, 'toggle is_lit back to 0 again using ->flip_switch' ); ok( $room->is_dark, 'check if is_dark does the right thing' ); +done_testing;