Merge pull request #7 from tokuhirom/master
[catagits/Web-Session.git] / t / 000_load.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use_ok( $_ ) || BAIL_OUT foreach qw[
9     Plack::Middleware::Session
10     Plack::Session
11     Plack::Session::Store
12     Plack::Session::Store::Cache
13     Plack::Session::Store::File
14     Plack::Session::State
15     Plack::Session::State::Cookie
16 ];
17
18 done_testing;