Subject: | warning if dump isn't set |
#!/usr/bin/perl
use strict;
use warnings;
use lib qw(./lib);
use Test::Aggregate;
my $tests = Test::Aggregate->new({
dirs => 't/',
});
$tests->run;
gives warnings:
Use of uninitialized value in concatenation (.) or string at
C:/usr/site/lib/Test/Aggregate.pm line 206.
Use of uninitialized value in string ne at
C:/usr/site/lib/Test/Aggregate.pm line 241.