X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbasic.t;h=ff6478a6834e5af1ebadad699118638a3abc64e9;hb=3d18ea100b25c1e19400763b0ce5a34aa8083af6;hp=8bbfa3e32d46b0a127c49b944a6edfcc13beb3c5;hpb=57fcdb5b2135b53c38a100282adcf8a239eb918c;p=p5sagit%2FDevel-Size.git diff --git a/t/basic.t b/t/basic.t index 8bbfa3e..ff6478a 100644 --- a/t/basic.t +++ b/t/basic.t @@ -1,9 +1,8 @@ #!/usr/bin/perl -w -use Test::More tests => 16; +use Test::More tests => 19; use strict; use Devel::Size qw(size total_size); -use Scalar::Util qw(weaken); can_ok ('Devel::Size', qw/ size @@ -11,7 +10,7 @@ can_ok ('Devel::Size', qw/ /); die ("Uhoh, test uses an outdated version of Devel::Size") - unless is ($Devel::Size::VERSION, '0.74_52', 'VERSION MATCHES'); + unless is ($Devel::Size::VERSION, '0.76_50', 'VERSION MATCHES'); ############################################################################# # some basic checks: @@ -84,7 +83,18 @@ cmp_ok (total_size(\&LARGE), '>', 8192, { my $a = []; my $b = \$a; - # making a weakref upgrades the target to PVMG and adds magic + # Scalar::Util isn't in the core before 5.7.something. + # The test isn't really testing anything without the weaken(), but it + # isn't counter-productive or harmful to run it anyway. + unless (eval { + require Scalar::Util; + # making a weakref upgrades the target to PVMG and adds magic + Scalar::Util::weaken($b); + 1; + }) { + die $@ if $] >= 5.008; + } + is(total_size($a), total_size([]), 'Any intial reference is dereferenced and discarded'); } @@ -98,3 +108,18 @@ foreach(['undef', total_size(undef)], is($size, 0, "PL_sv_$name is interpeter wide, so not counted as part of the structure's size"); } + +{ + # SvOOK stuff + my $uurk = "Perl Rules"; + # This may upgrade the scalar: + $uurk =~ s/Perl//; + $uurk =~ s/^/Perl/; + my $before_size = total_size($uurk); + my $before_length = length $uurk; + cmp_ok($before_size, '>', $before_length, 'Size before is sane'); + $uurk =~ s/Perl //; + is(total_size($uurk), $before_size, + "Size doesn't change because OOK is used"); + cmp_ok(length $uurk, '<', $before_size, 'but string is shorter'); +}