Add some dwim to Credential::Password (arg less $c->login will mine params), fix...
[catagits/Catalyst-Plugin-Authentication.git] / t / 04_authentication.t
CommitLineData
dde93f12 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More 'no_plan';
7
8
9my $m; BEGIN { use_ok($m = "Catalyst::Plugin::Authentication") }
10
bfeb91b4 11can_ok( $m, $_ ) for qw/user logout set_authenticated/;