RSS Git Download  Clone
Raw Blame History
use strict;
use warnings;

use Outreach;
use Test::More tests => 2;
use Plack::Test;
use HTTP::Request::Common;

my $app = Outreach->to_app;
is( ref $app, 'CODE', 'Got app' );

my $test = Plack::Test->create($app);
my $res  = $test->request( GET '/' );

ok( $res->is_success, '[GET /] successful' );