Added high performance version of the Sessions code as a branch
[catagits/Catalyst-Plugin-Session.git] / t / 00_basic_sanity.t
CommitLineData
95c6f6e8 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::SessionHP") }
10
11can_ok($m, $_) for qw/session_id session session_delete_reason/;