Dancer Test scripts



examples/1/D2-Ajax/t/001_base.t
use strict;
use warnings;

use Test::More tests => 1;
use_ok 'D2::Ajax';

examples/1/D2-Ajax/t/002_index_route.t
use strict;
use warnings;

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

my $app = D2::Ajax->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' );