The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More;
use Plack::Builder;
use HTTP::Request::Common;
use Plack::Test;

plan tests => 5;

my $app = sub {
    [200, ['Content-Type', 'text/plain'], ['ok']]
};

ok my $builder = Plack::Builder->new();
$builder->add_middleware('Runtime');
$app = $builder->mount('/app/foo/bar' => $app);
$builder->add_middleware('XFramework', framework => 'Plack::Builder');
$app = $builder->to_app($app);
ok $app;

test_psgi $app, sub {
    my $cb = shift;

    my $res = $cb->(GET "/app/foo/bar");
    ok $res->header('X-Runtime');
    is $res->header('X-Framework'), 'Plack::Builder';
    is $res->content, "ok";
};