diff --git a/t/tests/Test/Asset/Redirect.pm b/t/tests/Test/Asset/Redirect.pm new file mode 100644 index 000000000..56ff3eac6 --- /dev/null +++ b/t/tests/Test/Asset/Redirect.pm @@ -0,0 +1,34 @@ +package Test::Asset::Redirect; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::Redirect/; +} + +sub uiLevel { + return 9; +} + +sub list_of_tables { + return [qw/assetData redirect/]; +} + +1; diff --git a/t/tests/Test/Asset/RichEdit.pm b/t/tests/Test/Asset/RichEdit.pm new file mode 100644 index 000000000..11a53e80d --- /dev/null +++ b/t/tests/Test/Asset/RichEdit.pm @@ -0,0 +1,34 @@ +package Test::Asset::RichEdit; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::RichEdit/; +} + +sub uiLevel { + return 5; +} + +sub list_of_tables { + return [qw/assetData RichEdit/]; +} + +1; diff --git a/t/tests/Test/Asset/Shortcut.pm b/t/tests/Test/Asset/Shortcut.pm new file mode 100644 index 000000000..e6d787bf8 --- /dev/null +++ b/t/tests/Test/Asset/Shortcut.pm @@ -0,0 +1,30 @@ +package Test::Asset::Shortcut; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::Shortcut/; +} + +sub list_of_tables { + return [qw/assetData Shortcut/]; +} + +1; diff --git a/t/tests/Test/Asset/Sku.pm b/t/tests/Test/Asset/Sku.pm new file mode 100644 index 000000000..591e32847 --- /dev/null +++ b/t/tests/Test/Asset/Sku.pm @@ -0,0 +1,30 @@ +package Test::Asset::Sku; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::Sku/; +} + +sub list_of_tables { + return [qw/assetData sku/]; +} + +1; diff --git a/t/tests/Test/Asset/Template.pm b/t/tests/Test/Asset/Template.pm new file mode 100644 index 000000000..88485b8e1 --- /dev/null +++ b/t/tests/Test/Asset/Template.pm @@ -0,0 +1,30 @@ +package Test::Asset::Template; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::Template/; +} + +sub list_of_tables { + return [qw/assetData template/]; +} + +1; diff --git a/t/tests/Test/Asset/Wobject.pm b/t/tests/Test/Asset/Wobject.pm new file mode 100644 index 000000000..19212ff62 --- /dev/null +++ b/t/tests/Test/Asset/Wobject.pm @@ -0,0 +1,30 @@ +package Test::Asset::Wobject; +#------------------------------------------------------------------- +# 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 WebGUI::Test; + +use Test::More; +use Test::Deep; +use Test::Exception; + +sub class { + return qw/WebGUI::Asset::Wobject/; +} + +sub list_of_tables { + return [qw/assetData wobject/]; +} + +1;