X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbasic.t;h=319975fe5f9b81658bc353834bcc58abb9110e30;hb=06b370a74368865008bcc18d1baaa0ba97a1fb2e;hp=4dfed682de498c437d769079b50d6d69f37c49c5;hpb=cf1d079ffe387ffbe4dd412665f8dab9c2170e75;p=p5sagit%2FDevel-Size.git diff --git a/t/basic.t b/t/basic.t index 4dfed68..319975f 100644 --- a/t/basic.t +++ b/t/basic.t @@ -1,8 +1,9 @@ #!/usr/bin/perl -w -use Test::More tests => 14; +use Test::More tests => 16; use strict; use Devel::Size qw(size total_size); +use Scalar::Util qw(weaken); can_ok ('Devel::Size', qw/ size @@ -10,7 +11,7 @@ can_ok ('Devel::Size', qw/ /); die ("Uhoh, test uses an outdated version of Devel::Size") - unless is ($Devel::Size::VERSION, '0.72_52', 'VERSION MATCHES'); + unless is ($Devel::Size::VERSION, '0.75_51', 'VERSION MATCHES'); ############################################################################# # some basic checks: @@ -67,18 +68,6 @@ my($c1,$c2); $c2 = \$c1; $c1 = \$c2; is (total_size($c1), total_size($c2), 'circular references'); -############################################################################# -# GLOBS - -cmp_ok(total_size(*foo), '>', 0, 'total_size(*foo) > 0'); - -############################################################################# -# CODE ref - -my $code = sub { '1' }; - -cmp_ok(total_size($code), '>', 0, 'total_size($code) > 0'); - ########################################################## # RT#14849 (& RT#26781 and possibly RT#29238?) cmp_ok( total_size( sub{ do{ my $t=0 }; } ), '>', 0, @@ -91,3 +80,21 @@ use constant LARGE => 'N' x 8192; cmp_ok (total_size(\&LARGE), '>', 8192, 'total_size for a constant includes the constant'); + +{ + my $a = []; + my $b = \$a; + # making a weakref upgrades the target to PVMG and adds magic + is(total_size($a), total_size([]), + 'Any intial reference is dereferenced and discarded'); +} + +# Must call direct - avoid all copying: +foreach(['undef', total_size(undef)], + ['no', total_size(1 == 0)], + ['yes', total_size(1 == 1)], + ) { + my ($name, $size) = @$_; + is($size, 0, + "PL_sv_$name is interpeter wide, so not counted as part of the structure's size"); +}