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 MXDriverArgsConfigTestBase;
use Moose;

has 'inherited_ro_attr' => (is => 'ro', isa => 'Str');

no Moose;
1;

package MXDriverArgsConfigTest;
use Moose;
extends 'MXDriverArgsConfigTestBase';
with 'MooseX::SimpleConfig';

has 'direct_attr' => (is => 'ro', isa => 'Int');

has 'req_attr' => (is => 'rw', isa => 'Str', required => 1);

sub config_any_args {
    return +{
        driver_args => {
            General => {
                -LowerCaseNames => 1
            }
        }
    }
}

no Moose;
1;