use strict;
# ABSTRACT: Test basic performance
my $tdir = Path::Tiny->tempdir;
my $csv = $tdir->child('out.csv');
local $@;
ok(
eval {
my $bench = Benchmark::CSV->new(
{
sample_size => 100,
output => $csv,
}
);
1;
},
"Construct with a hashref"
) or diag $@;
done_testing;