Fix inheritance for SelectList, -Box. Add AdSpace, Asset, AssetReportQuery, Attachments.

This commit is contained in:
Colin Kuskie 2010-09-20 17:27:46 -07:00
parent 200970cfd9
commit dd527838ee
6 changed files with 78 additions and 2 deletions

View 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;

View 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;

View 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;

View 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;

View file

@ -14,6 +14,6 @@ use warnings;
use Test::More;
use base qw/Test::WebGUI::Form::Control/;
use base qw/Test::WebGUI::Form::List/;
1;

View file

@ -14,6 +14,6 @@ use warnings;
use Test::More;
use base qw/Test::WebGUI::Form::Control/;
use base qw/Test::WebGUI::Form::List/;
1;