File: live_app.t

package info (click to toggle)
libcatalyst-plugin-authentication-perl 0.10024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 508 kB
  • sloc: perl: 1,531; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Test::More;

BEGIN {
    plan skip_all => "Digest::SHA is required for this test" unless eval { require Digest::SHA };
    plan "no_plan";
}

use lib 't/lib';
use Catalyst::Test qw/AuthTestApp/;

ok(get("/moose"), "get ok");