X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=t%2Fpsgi_mount.t;h=d29df054586d477fb598558a82adcd065340c500;hp=751c13b715a0c8616a79e7e5b0ef58eac3da8497;hb=62f28026e624ed30d620063a0fa92cbedb7f6673;hpb=f018d5cc70f3a6983e4ec188ae62a729a8b31157 diff --git a/t/psgi_mount.t b/t/psgi_mount.t index 751c13b7..d29df054 100644 --- a/t/psgi_mount.t +++ b/t/psgi_mount.t @@ -9,15 +9,14 @@ my ($tmpdir, $for_destroy) = tmpdir(); my $maindir = "$tmpdir/main.git"; my $addr = 'test-public@example.com'; my $cfgpfx = "publicinbox.test"; -my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape); +my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape + Plack::Builder Plack::App::URLMap); require_mods(@mods); use_ok $_ foreach @mods; +use_ok 'PublicInbox::WWW'; use PublicInbox::Import; use PublicInbox::Git; use PublicInbox::Config; -use PublicInbox::WWW; -use Plack::Builder; -use Plack::App::URLMap; my $config = PublicInbox::Config->new(\<new($config); -my $app = builder { - enable 'Head'; - mount '/a' => builder { sub { $www->call(@_) } }; - mount '/b' => builder { sub { $www->call(@_) } }; -}; +my $app = builder(sub { + enable('Head'); + mount('/a' => builder(sub { sub { $www->call(@_) } })); + mount('/b' => builder(sub { sub { $www->call(@_) } })); +}); test_psgi($app, sub { my ($cb) = @_;