d390c27d669d8c443bb7beb1b53825a05787a359
[gitmo/Role-Tiny.git] / t / accessor-weaken.t
1 use strictures 1;
2 use Test::More;
3
4 {
5   package Foo;
6
7   use Moo;
8
9   has one => (is => 'ro', weak_ref => 1);
10 }
11
12 my $ref = {};
13 my $foo = Foo->new(one => $ref);
14 is($foo->one, $ref, 'value present');
15 ok(Scalar::Util::isweak($foo->{one}), 'value weakened');
16 undef $ref;
17 ok (!defined $foo->{one}, 'weak value gone');
18
19 # test readonly SVs
20 sub mk_ref { \ 'yay' };
21 my $foo_ro = eval { Foo->new(one => mk_ref()) };
22 if ($] < 5.008003) {
23   like(
24     $@,
25     qr/\QReference to readonly value in "one" can not be weakened on Perl < 5.8.3/,
26     'Expected exception thrown on old perls'
27   );
28 }
29 elsif ($^O eq 'cygwin' and $] < 5.012000) {
30   SKIP: { skip 'Static coderef reaping seems nonfunctional on cygwin < 5.12', 1 }
31 }
32 else {
33   is(${$foo_ro->one},'yay', 'value present');
34   ok(Scalar::Util::isweak($foo_ro->{one}), 'value weakened');
35
36   { no warnings 'redefine'; *mk_ref = sub {} }
37   ok (!defined $foo_ro->{one}, 'optree reaped, ro static value gone');
38 }
39
40 done_testing;