From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/pro/bin/perl
use strict;
my $DBD = "mysql";
require "./t/arraytest.pl";
# Test connect without serializer to check if DBD is available
{ my @array;
eval { tie @array, "Tie::Array::DBD", dsn ($DBD) };
tied @array or plan_fail ($DBD);
untie @array;
}
arraytests ($DBD);
done_testing;