The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!perl
use strict;
pass("Data::Frame::Setup successfully loaded");
like(
dies { Data::Frame::Setup->import(":doesnotexist"); },
qr/^":doesnotexist" is not exported by the Data::Frame::Setup module/,
"dies on a wrong import parameter"
);
done_testing;