File: 07-no-args.t

package info (click to toggle)
libdevel-stacktrace-perl 2.0500-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: perl: 526; sh: 23; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (6)
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 );
}