The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/lib";

use Test::More;
use Catalyst::Test 'TestApp';

plan tests => 1;

my $entrypoint = "http://localhost/appname";
{
    my $response = request($entrypoint);
    is( $response->code, 500 );
}

1;