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 Test::More tests => 1;

BEGIN {
    chdir "t" if -d "t";
    use lib qw(../lib);
}

require Devel::CallStack;
eval 'Devel::CallStack::import("Devel::CallStack", "bad")';
like($@, qr/Devel::CallStack::import: 'bad' unknown/);