add a test stub for DeleteExpiredSessions. To be filled in soon :)

This commit is contained in:
Colin Kuskie 2007-11-02 04:31:47 +00:00
parent 5263e69c85
commit 2c232773e4

View 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');
}