The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112 #!/usr/bin/perl -w use strict;use warnings;use v5.10;use lib 'lib', '../lib'; # able to run prove in project dir and .t locally use Test::More tests => 1;use_ok('Data::URIID');exit 0;
#!/usr/bin/perl -w
use
strict;
warnings;
v5.10;
lib
'lib'
,
'../lib'
;
# able to run prove in project dir and .t locally
Test::More
tests
=> 1;
use_ok(
'Data::URIID'
);
exit
0;