1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
use strict;
use warnings;
use Test::More;
use FindBin;
use lib "$FindBin::Bin/lib";
use Plack::Test;
use Plack::Builder;
use Plack::Middleware::Magpie;
use HTTP::Request::Common;
my $handler = builder {
enable "Magpie", resource => { class => 'Magpie::Resource::File', root => 't/htdocs' };
};
test_psgi
app => $handler,
client => sub {
my $cb = shift;
{
my $resp = $cb->(GET "http://localhost/hello.xml");
is $resp->code, 200;
like $resp->content, qr|<hello/>|;
}
{
my $resp = $cb->(GET "http://localhost/avt.xsp");
is $resp->code, 200;
like $resp->content, qr|<xsp:logic>|;
}
};
done_testing;
|