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

use strict;
__PACKAGE__->config(
allow_globals => [qw/$foo @bar/],
);
if ($::use_path_class) {
__PACKAGE__->config(
comp_root => TestApp->path_to('root'),
data_dir => TestApp->path_to('root', 'var'),
);
}
1;