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

sub import {
    my $caller = caller();

    ## no critic ProhibitStringyEval
    eval <<"MAGIC" or die "Couldn't set up testing policy: $@";
package $caller;
use Test::Most '-Test::Deep','-Test::Exception';
use Test::Deep '!blessed';
use Test::Fatal;
use Data::Printer;
1;
MAGIC
    return 1;
}

1;