Chop out crap that is not needed
[catagits/Catalyst-Plugin-Session.git] / t / 00_basic_sanity.t
CommitLineData
9e447f9d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 4;
7
8
9my $m; BEGIN { use_ok($m = "Catalyst::Plugin::Session") }
10
11can_ok($m, $_) for qw/sessionid session session_delete_reason/;
fff59d60 12
fff59d60 13