App-Notifier-Service
view release on metacpan or search on metacpan
t/002_index_route.t view on Meta::CPAN
use Test::More tests => 1;
use strict;
use warnings;
# the order is important
use Plack::Test;
use HTTP::Request::Common; # install separate
# use App::Notifier::Service 0.0800;
my $app = do { require App::Notifier::Service; };
my $test = Plack::Test->create($app);
my $res = $test->request( GET '/' );
{
local $TODO = 1;
# TEST
is( $res->code, 200, 'response status is 200 for /' );
}
( run in 0.829 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )