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 Test::MyCmd::Command::justusage;
use Any::Moose;

extends qw(MooseX::App::Cmd::Command);

=head1 NAME

Test::MyCmd::Command::justusage - it just dies its own usage, no matter what

=cut

sub execute {
    my ( $self, $opt, $arg ) = @_;

    die $self->usage->text;
}

1;