The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl
use warnings;
use strict;
use blib;
use Test::More;

BEGIN { 
    plan skip_all => "Need Plack >= 0.9950 to run this test"
        unless eval 'require Plack; $Plack::VERSION >= 0.995';
}
use Feersum;

{
    no warnings 'redefine';
    *Feersum::DIED = sub { 
        # for cleaner TAP output:
        return if $_[0] =~ /Server shouldn't crash/;
        diag "Feersum caught: ",@_;
    };
}

use Plack::Test::Suite;

Plack::Test::Suite->run_server_tests('Feersum');
done_testing;