Wobject tests, through letter M.
This commit is contained in:
parent
953df3563f
commit
3ea797b2d4
7 changed files with 180 additions and 0 deletions
|
|
@ -33,5 +33,11 @@ use Test::Asset::Wobject::Folder;
|
|||
use Test::Asset::Wobject::Gallery;
|
||||
use Test::Asset::Wobject::GalleryAlbum;
|
||||
use Test::Asset::Wobject::HttpProxy;
|
||||
use Test::Asset::Wobject::InOutBoard;
|
||||
use Test::Asset::Wobject::Layout;
|
||||
use Test::Asset::Wobject::Map;
|
||||
use Test::Asset::Wobject::Matrix;
|
||||
use Test::Asset::Wobject::MessageBoard;
|
||||
use Test::Asset::Wobject::MultiSearch;
|
||||
|
||||
Test::Class->runtests;
|
||||
|
|
|
|||
29
t/tests/Test/Asset/Wobject/InOutBoard.pm
Normal file
29
t/tests/Test/Asset/Wobject/InOutBoard.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::InOutBoard;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::InOutBoard/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject InOutBoard/];
|
||||
}
|
||||
|
||||
1;
|
||||
29
t/tests/Test/Asset/Wobject/Layout.pm
Normal file
29
t/tests/Test/Asset/Wobject/Layout.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::Layout;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::Layout/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject Layout/];
|
||||
}
|
||||
|
||||
1;
|
||||
29
t/tests/Test/Asset/Wobject/Map.pm
Normal file
29
t/tests/Test/Asset/Wobject/Map.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::Map;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::Map/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject Map/];
|
||||
}
|
||||
|
||||
1;
|
||||
29
t/tests/Test/Asset/Wobject/Matrix.pm
Normal file
29
t/tests/Test/Asset/Wobject/Matrix.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::Matrix;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::Matrix/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject Matrix/];
|
||||
}
|
||||
|
||||
1;
|
||||
29
t/tests/Test/Asset/Wobject/MessageBoard.pm
Normal file
29
t/tests/Test/Asset/Wobject/MessageBoard.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::MessageBoard;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::MessageBoard/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject MessageBoard/];
|
||||
}
|
||||
|
||||
1;
|
||||
29
t/tests/Test/Asset/Wobject/MultiSearch.pm
Normal file
29
t/tests/Test/Asset/Wobject/MultiSearch.pm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package Test::Asset::Wobject::MultiSearch;
|
||||
#-------------------------------------------------------------------
|
||||
# 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
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use FindBin;
|
||||
use lib "$FindBin::Bin/lib";
|
||||
|
||||
use base qw/Test::AssetBase/;
|
||||
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Test::Exception;
|
||||
|
||||
sub class {
|
||||
return qw/WebGUI::Asset::Wobject::MultiSearch/;
|
||||
}
|
||||
|
||||
sub list_of_tables {
|
||||
return [qw/assetData wobject MultiSearch/];
|
||||
}
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue