initial base of Account test classes
This commit is contained in:
parent
6bb5ab997d
commit
8bd2deabe3
3 changed files with 98 additions and 0 deletions
26
t/run_account.t
Normal file
26
t/run_account.t
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001-2009 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
BEGIN {
|
||||
|
||||
use File::Spec::Functions qw( catdir rel2abs );
|
||||
use File::Basename;
|
||||
use Test::More;
|
||||
use Test::Class;
|
||||
use Module::Find;
|
||||
use lib rel2abs( catdir ( dirname( __FILE__ ), 'tests' ) );
|
||||
|
||||
# plan skip_all => "Extremely slow asset tests only run if WEBGUI_ASSET_TESTS set"
|
||||
# unless $ENV{WEBGUI_ASSET_TESTS};
|
||||
useall('Test::WebGUI::Account');
|
||||
}
|
||||
|
||||
Test::Class->runtests;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue