summaryrefslogtreecommitdiff
path: root/t/07-no-args.t
blob: 7bdc166e9d2fe98be9ee8c2ec95d9494e59e8a85 (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
use strict;
use warnings;

use Test::More;

use Devel::StackTrace;

{
    my $trace = foo( 1, 2 );
    is_deeply(
        [ map { [ $_->args() ] } $trace->frames() ],
        [
            ['Devel::StackTrace'],
            [ 3, 4 ],
            [ 1, 2 ],
        ],
        'trace includes args'
    );

    $trace = foo( 0, 2 );
    is_deeply(
        [ map { [ $_->args() ] } $trace->frames() ],
        [
            [],
            [],
            [],
        ],
        'trace does not include args'
    );

}

done_testing();

sub foo {
    $_[0] ? bar( 3, 4 ) : baz( 3, 4 );
}

sub bar {
    return Devel::StackTrace->new();
}

sub baz {
    return Devel::StackTrace->new( no_args => 1 );
}