1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More import => ['!pass'];
use Dancer;
my $CLASS = 'Dancer::Session::Cookie';
use_ok $CLASS;
note "test setup"; {
set session_cookie_key => "The dolphins are in the jacuzzi";
}
note "default path"; {
my $session = Dancer::Session::Cookie->create;
my %cookie = $session->_cookie_params;
is $cookie{path}, "/";
}
note "set the path"; {
set session_cookie_path => "/some/thing";
my $session = Dancer::Session::Cookie->create;
my %cookie = $session->_cookie_params;
is $cookie{path}, "/some/thing";
}
done_testing;
|