Keep the session tracking, but hide it behind an environment
variable to keep the line noise down. Also, add user and group tracking.
This commit is contained in:
parent
43bf612cdb
commit
fc6fe216b0
1 changed files with 6 additions and 2 deletions
|
|
@ -107,8 +107,12 @@ BEGIN {
|
||||||
|
|
||||||
END {
|
END {
|
||||||
my $Test = Test::Builder->new;
|
my $Test = Test::Builder->new;
|
||||||
$Test->diag('Sessions: '.$SESSION->db->quickScalar('select count(*) from userSession'));
|
if ($ENV{WEBGUI_TEST_DEBUG}) {
|
||||||
$Test->diag('Scratch : '.$SESSION->db->quickScalar('select count(*) from userSessionScratch'));
|
$Test->diag('Sessions: '.$SESSION->db->quickScalar('select count(*) from userSession'));
|
||||||
|
$Test->diag('Scratch : '.$SESSION->db->quickScalar('select count(*) from userSessionScratch'));
|
||||||
|
$Test->diag('Users : '.$SESSION->db->quickScalar('select count(*) from users'));
|
||||||
|
$Test->diag('Groups : '.$SESSION->db->quickScalar('select count(*) from groups'));
|
||||||
|
}
|
||||||
$SESSION->var->end;
|
$SESSION->var->end;
|
||||||
$SESSION->close if defined $SESSION;
|
$SESSION->close if defined $SESSION;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue