The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
1234567891011 #!/usr/bin/perl -wuse v5.10;use lib 'lib', '../lib'; # able to run prove in project dir and .t locallyuse Test::More tests => 2;use_ok('Data::Identifier');use_ok('Data::Identifier::Generate');exit 0;
#!/usr/bin/perl -w
use
v5.10;
lib
'lib'
,
'../lib'
;
# able to run prove in project dir and .t locally
Test::More
tests
=> 2;
use_ok(
'Data::Identifier'
);
'Data::Identifier::Generate'
exit
0;