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 TestAppChainedAbsolutePathPart;

use strict;
use Catalyst qw/
    Test::Errors 
    Test::Headers 
/;
use Catalyst::Utils;

our $VERSION = '0.01';

TestAppChainedAbsolutePathPart
    ->config( 
        name => 'TestAppChainedAbsolutePathPart',
        root => '/some/dir'
    );

TestAppChainedAbsolutePathPart->setup;

1;