Add tests for Hexadecimal, Password, Phone, Textarea, Zipcode
This commit is contained in:
parent
ab9b730a4b
commit
2b440003ae
5 changed files with 95 additions and 0 deletions
19
t/tests/Test/WebGUI/Form/Hexadecimal.pm
Normal file
19
t/tests/Test/WebGUI/Form/Hexadecimal.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Hexadecimal;
|
||||
#-------------------------------------------------------------------
|
||||
# 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;
|
||||
19
t/tests/Test/WebGUI/Form/Password.pm
Normal file
19
t/tests/Test/WebGUI/Form/Password.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Password;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Phone.pm
Normal file
19
t/tests/Test/WebGUI/Form/Phone.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Phone;
|
||||
#-------------------------------------------------------------------
|
||||
# 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;
|
||||
19
t/tests/Test/WebGUI/Form/Textarea.pm
Normal file
19
t/tests/Test/WebGUI/Form/Textarea.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Textarea;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Zipcode.pm
Normal file
19
t/tests/Test/WebGUI/Form/Zipcode.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Zipcode;
|
||||
#-------------------------------------------------------------------
|
||||
# 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue