Add tests for Captcha, ClassName, Codearea, HTMLArea, IntSlider, RadioList, Slider
This commit is contained in:
parent
8326417f06
commit
a25e40d6a5
7 changed files with 133 additions and 0 deletions
19
t/tests/Test/WebGUI/Form/Captcha.pm
Normal file
19
t/tests/Test/WebGUI/Form/Captcha.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Captcha;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/ClassName.pm
Normal file
19
t/tests/Test/WebGUI/Form/ClassName.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::ClassName;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::ReadOnly/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/Codearea.pm
Normal file
19
t/tests/Test/WebGUI/Form/Codearea.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Codearea;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::Textarea/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/HTMLArea.pm
Normal file
19
t/tests/Test/WebGUI/Form/HTMLArea.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::HTMLArea;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::Textarea/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/IntSlider.pm
Normal file
19
t/tests/Test/WebGUI/Form/IntSlider.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::IntSlider;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::Slider/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/RadioList.pm
Normal file
19
t/tests/Test/WebGUI/Form/RadioList.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::RadioList;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::List/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/Slider.pm
Normal file
19
t/tests/Test/WebGUI/Form/Slider.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Slider;
|
||||
#-------------------------------------------------------------------
|
||||
# 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue