The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314 #!/usr/bin/perl -w# Load testing for Module::Mapperuse strict;use warnings;BEGIN { $| = 1;}use Test::More tests => 1;# Load the modulesuse_ok( 'Module::Mapper' );
#!/usr/bin/perl -w
# Load testing for Module::Mapper
use
strict;
warnings;
BEGIN {
$| = 1;
}
Test::More
tests
=> 1;
# Load the modules
use_ok(
'Module::Mapper'
);