From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213 #!perl -Tuse 5.010001;use strict;use warnings;use Test::More;plan tests => 1;BEGIN { use_ok( 'SQL::Tiny' ) || print "Bail out!\n";}diag( "Testing SQL::Tiny $SQL::Tiny::VERSION, Perl $], $^X" );
#!perl -T
use
5.010001;
strict;
warnings;
Test::More;
plan
tests
=> 1;
BEGIN {
use_ok(
'SQL::Tiny'
) ||
print
"Bail out!\n"
;
}
diag(
"Testing SQL::Tiny $SQL::Tiny::VERSION, Perl $], $^X"
);