The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! perl
use strict;
use warnings;

use Test::More;

ok -e for map { my $file = $_; $file =~ s{::}{/}; "inc/$file.pm" } qw{DateTime DateTime::Locale Params::Validate};
ok !-e for map { my $file = $_; $file =~ s{::}{/}; "inc/$file.pm" } qw{strict warnings Scalar::Util};

done_testing;