Tests for List, Radio, Checkbox, SelectBox, SelectList, Username

This commit is contained in:
Colin Kuskie 2010-09-20 17:22:34 -07:00
parent 2b440003ae
commit 200970cfd9
6 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,19 @@
package Test::WebGUI::Form::Checkbox;
#-------------------------------------------------------------------
# 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::List;
#-------------------------------------------------------------------
# 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::Radio;
#-------------------------------------------------------------------
# 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::SelectBox;
#-------------------------------------------------------------------
# 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::SelectList;
#-------------------------------------------------------------------
# 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::Username;
#-------------------------------------------------------------------
# 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::Text/;
1;