From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314151617181920 use strict;use warnings;package App::Embra::StubConfig;use Test::Roo::Role;use Method::Signatures;has config => ( is => 'ro', default => method { { 'App::Embra::Plugin::Test' => { greeting => 'howdy', }, }; },);1;
use
strict;
warnings;
package
App::Embra::StubConfig;
Test::Roo::Role;
Method::Signatures;
has
config
=> (
is
=>
'ro'
,
default
=> method {
{
'App::Embra::Plugin::Test'
=> {
greeting
'howdy'
},
};
);
1;