aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/model/session.t
blob: f460204e5501e85a22907f8014a3e0096096683f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use FixMyStreet::TestMech;

my $mech = FixMyStreet::TestMech->new;

my $user = $mech->log_in_ok('test@example.com');

my $session = FixMyStreet::DB->resultset("Session")->first;

my $id = $session->id;
$id =~ s/\s+$//;
is $id, "session:" . $session->id_code;
is $session->user->email, $user->email;

done_testing;