use Test::More; use lib qw( ../lib ./lib ); use Egg::Helper; eval { require Cache::FileCache }; if ($@) { plan skip_all => "Cache::FileCache is not installed." } else { plan tests=> 5; my $tool = Egg::Helper->helper_tools; my $root = $tool->helper_tempdir. '/Vtest'; $tool->helper_create_file ($tool->helper_yaml_load(join '', ), { root=> $root }); my $e= Egg::Helper->run( Vtest => { vtest_root=> $root, vtest_config=> { MODEL=> ['Session'] }, }); ok my $ss= $e->model('session::test'), q{my $ss= $e->model('session::test')}; isa_ok $ss->context, 'Egg::Model::Session::ID::IPaddr'; is $ss->context->make_session_id, $e->request->address, q{$ss->context->make_session_id, $e->request->address}; is $ss->context->get_bind_data, $e->request->address, q{$ss->context->get_bind_data, $e->request->address}; is $ss->context->set_bind_data, 1, q{$ss->context->set_bind_data, 1}; } __DATA__ filename: /lib/Vtest/Model/Session/Test.pm value: | package Vtest::Model::Session::Test; use strict; use warnings; use base qw/ Egg::Model::Session::Manager::Base /; __PACKAGE__->config( param_name=> 'ss', ); __PACKAGE__->startup qw/ ID::IPaddr Base::FileCache /; package Vtest::Model::Session::Test::TieHash; use strict; use warnings; use base qw/ Egg::Model::Session::Manager::TieHash /; 1;