summaryrefslogtreecommitdiff
path: root/t/basic.t
blob: 0fe5c133e220baf5878cb665eba395eecafcf94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use strict;
use warnings;

use Test::More;
use Test::Fatal;
use Variable::Disposition;

{
    my $x = [1,2,3];
    isa_ok($x, 'ARRAY');
    dispose $x;
    is($x, undef, 'was undefined correctly');
}

{
    my $x = [1,2,3];
    my $copy = $x;
    like(exception {
        dispose $x;
    }, qr/not released/, 'raise an exception if variable is still around');
    is($x, undef, 'was still undefined correctly');
    is(exception {
        dispose $copy;
    }, undef, 'no exception when last copy goes');
}

{
    my $x = 'test';
    like(exception {
        dispose $x;
    }, qr/not a ref/, 'raise an exception when called on non-ref');
    is($x, 'test', 'still defined');
    undef $x;
    like(exception {
        dispose $x;
    }, qr/not defined/, 'raise an exception when called on undef');
}

my $destroyed = 0;
{
    {
        package Local::Test;
        sub DESTROY { ++$destroyed }
    }
    my $x = bless {}, 'Local::Test';
    is($destroyed, 0, 'not yet destroyed');
    dispose $x;
    is($destroyed, 1, 'destroyed after dispose()');
    is($x, undef, 'was undef');
}
is($destroyed, 1, 'still only a single DESTROY called when leaving scope');

done_testing;