summaryrefslogblamecommitdiffstats
path: root/t/double_port.t
blob: 2bb1c82bfcb04e74421d8f8bab0b561caf68785a (plain) (tree)























                                                
#!/usr/bin/env perl
use Test::More;
use Plack::Test;

use HTTP::Request::Common;
use Web::Request;

$Plack::Test::Impl = 'Server';
local $ENV{PLACK_SERVER} = "HTTP::Server::PSGI";

my $app = sub {
    my $req = Web::Request->new_from_env(shift);
    return [200, [], [ $req->uri ]];
};

test_psgi app => $app, client => sub {
    my $cb = shift;
    my $res = $cb->(GET "http://localhost/foo");
    ok $res->content !~ /:\d+:\d+/;
};

done_testing;