# -*- perl -*-
use strict;
use warnings FATAL => 'all';
# t/001_load.t - check module loading
use Apache::Test qw( :withtestmore );
BEGIN {
use_ok('Apache2::WebApp::Plugin::Session');
}
my $obj = new Apache2::WebApp::Plugin::Session;
isa_ok( $obj, 'Apache2::WebApp::Plugin::Session' );
done_testing();