File: 000_load.t

package info (click to toggle)
libplack-middleware-session-perl 0.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 276 kB
  • sloc: perl: 1,322; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

use_ok( $_ ) || BAIL_OUT foreach qw[
    Plack::Middleware::Session
    Plack::Session
    Plack::Session::Store
    Plack::Session::Store::Cache
    Plack::Session::Store::File
    Plack::Session::State
    Plack::Session::State::Cookie
];

done_testing;