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

use Test::More tests => 1;

SKIP: {
  skip 'Have all the modules; can\'t check this', 1
    unless not eval {
      require indirect;
      require multidimensional;
      require bareword::filehandles;
      1;
    };

  pass('can manage to survive with some modules missing!');
}