The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 #!/usr/bin/env perluse strict;use warnings;use Test::More 0.82;use Map::Tube::Milan; eval 'use Test::Map::Tube';plan skip_all => 'Test::Map::Tube required for this test' if $@; ok_map( Map::Tube::Milan->new() );
#!/usr/bin/env perl
use
strict;
warnings;
Test::More 0.82;
Map::Tube::Milan;
eval
'use Test::Map::Tube'
;
plan
skip_all
=>
'Test::Map::Tube required for this test'
if
$@;
ok_map( Map::Tube::Milan->new() );