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