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

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

$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, 'test@example.com';

done_testing;