File: basic.t

package info (click to toggle)
libapp-stacktrace-perl 0.09-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 560 kB
  • sloc: perl: 297; ansic: 37; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Test::More tests => 1;
use Data::Dumper;
use Config;

$Data::Dumper::Sortkeys = 1;
$Data::Dumper::Varname = 'config';
$Data::Dumper::Terse = 1;
diag(Dumper(\%Config));

require App::Stacktrace;
$Data::Dumper::Varname = 'perl_offsets';
diag(Dumper(App::Stacktrace::_perl_offsets()));

pass('Loaded ok');