Fix inheritance for SelectList, -Box. Add AdSpace, Asset, AssetReportQuery, Attachments.
This commit is contained in:
parent
200970cfd9
commit
dd527838ee
6 changed files with 78 additions and 2 deletions
19
t/tests/Test/WebGUI/Form/AdSpace.pm
Normal file
19
t/tests/Test/WebGUI/Form/AdSpace.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
package Test::WebGUI::Form::AdSpace;
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
# 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 strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use Test::More;
|
||||||
|
|
||||||
|
use base qw/Test::WebGUI::Form::SelectBox/;
|
||||||
|
|
||||||
|
1;
|
||||||
19
t/tests/Test/WebGUI/Form/Asset.pm
Normal file
19
t/tests/Test/WebGUI/Form/Asset.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
package Test::WebGUI::Form::Asset;
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
# 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 strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use Test::More;
|
||||||
|
|
||||||
|
use base qw/Test::WebGUI::Form::Control/;
|
||||||
|
|
||||||
|
1;
|
||||||
19
t/tests/Test/WebGUI/Form/AssetReportQuery.pm
Normal file
19
t/tests/Test/WebGUI/Form/AssetReportQuery.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
package Test::WebGUI::Form::AssetReportQuery;
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
# 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 strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use Test::More;
|
||||||
|
|
||||||
|
use base qw/Test::WebGUI::Form::Control/;
|
||||||
|
|
||||||
|
1;
|
||||||
19
t/tests/Test/WebGUI/Form/Attachments.pm
Normal file
19
t/tests/Test/WebGUI/Form/Attachments.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
package Test::WebGUI::Form::Attachments;
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
# 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 strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use Test::More;
|
||||||
|
|
||||||
|
use base qw/Test::WebGUI::Form::Control/;
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
@ -14,6 +14,6 @@ use warnings;
|
||||||
|
|
||||||
use Test::More;
|
use Test::More;
|
||||||
|
|
||||||
use base qw/Test::WebGUI::Form::Control/;
|
use base qw/Test::WebGUI::Form::List/;
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ use warnings;
|
||||||
|
|
||||||
use Test::More;
|
use Test::More;
|
||||||
|
|
||||||
use base qw/Test::WebGUI::Form::Control/;
|
use base qw/Test::WebGUI::Form::List/;
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue