File: dd.t

package info (click to toggle)
libdata-dump-perl 1.25-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 1,173; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl -w

use strict;
use Test;
plan tests => 1;

use Data::Dump;

print "# ";
dd getlogin;
ddx localtime;
ddx \%Exporter::;

ok(1);