Add plans to tests so that aggregate smoke results work correctly. Without a plan...
[catagits/Catalyst-Plugin-Authentication.git] / t / live_app.t
CommitLineData
dde93f12 1use strict;
2use warnings;
3
d9d890bc 4use Test::More tests => 1;
04d44fa1 5
6BEGIN {
7 plan skip_all => "Digest::SHA1 is required for this test" unless eval { require Digest::SHA1 };
04d44fa1 8}
dde93f12 9
b42497b3 10use lib 't/lib';
dde93f12 11use Catalyst::Test qw/AuthTestApp/;
12
b42497b3 13ok(get("/moose"), "get ok");