Include the size of constants in constant subs (resolves CPAN #58485)
[p5sagit/Devel-Size.git] / t / basic.t
index 31e1810..62c7535 100644 (file)
--- a/t/basic.t
+++ b/t/basic.t
@@ -97,6 +97,7 @@ isnt( total_size( sub{ do{ my $t=0 }; } ), 0, 'total_size( sub{ my $t=0 } ) > 0'
 # CPAN RT #58484 and #58485
 isnt (total_size(\&total_size), 0, 'total_size(\&total_size) > 0');
 
-use constant LARGE => 'N' x 4096;
+use constant LARGE => 'N' x 8192;
 
-isnt (total_size(\&LARGE), 0, 'total_size for a constant > 0');
+cmp_ok (total_size(\&LARGE), '>', 8192,
+        'total_size for a constant includes the constant');