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

use strict;
use Catalyst qw/
    Test::Deprecated
/;

our $VERSION = '0.01';

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

__PACKAGE__->setup;

1;