add a test stub for DeleteExpiredSessions. To be filled in soon :)
This commit is contained in:
parent
5263e69c85
commit
2c232773e4
1 changed files with 28 additions and 0 deletions
28
t/Workflow/Activity/DeleteExpiredSessions.t
Normal file
28
t/Workflow/Activity/DeleteExpiredSessions.t
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001-2007 Plain Black Corporation.
|
||||
#-------------------------------------------------------------------
|
||||
# Please read the legal notices (docs/legal.txt) and the license
|
||||
# (docs/license.txt) that came with this distribution before using
|
||||
# this software.
|
||||
#-------------------------------------------------------------------
|
||||
# http://www.plainblack.com info@plainblack.com
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use strict;
|
||||
use lib "$FindBin::Bin/../../lib";
|
||||
|
||||
use WebGUI::Test;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::Workflow::Activity::DeleteExpiredSessions;
|
||||
|
||||
use Test::More;
|
||||
|
||||
plan tests => 1; # increment this value for each test you create
|
||||
|
||||
my $session = WebGUI::Test->session;
|
||||
|
||||
TODO: {
|
||||
local $TODO = "Tests that need to be written";
|
||||
ok(0, 'Test allowPrivateMessages=friends, with various userIds');
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue