summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/Data-Dumper/t/lib/Testing.pm
blob: 5eaa8ee73a761f2d98ea90b547e0abf3f5d388e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Testing;
use 5.006_001;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(_dumptostr);
use Carp;

sub _dumptostr {
    my ($obj) = @_;
    return join '', $obj->Dump;
}

1;