possibly fix frang's problem
[catagits/Catalyst-Plugin-Authentication.git] / t / live_app.t
CommitLineData
b003080b 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
ce22ba16 6use Test::More;
7
8BEGIN {
9 plan skip_all => "Digest::SHA1 is required for this test" unless eval { require Digest::SHA1 };
10 plan "no_plan";
11}
b003080b 12
a3bf437a 13use lib 't/lib';
b003080b 14use Catalyst::Test qw/AuthTestApp/;
15
a3bf437a 16ok(get("/moose"), "get ok");