The rest of the form plugins
This commit is contained in:
parent
108065856f
commit
8750c4f488
20 changed files with 380 additions and 0 deletions
19
t/tests/Test/WebGUI/Form/CheckList.pm
Normal file
19
t/tests/Test/WebGUI/Form/CheckList.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::CheckList;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/JsonTable.pm
Normal file
19
t/tests/Test/WebGUI/Form/JsonTable.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::JsonTable;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Keywords.pm
Normal file
19
t/tests/Test/WebGUI/Form/Keywords.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Keywords;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/LdapLink.pm
Normal file
19
t/tests/Test/WebGUI/Form/LdapLink.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::LdapLink;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/MatrixCompare.pm
Normal file
19
t/tests/Test/WebGUI/Form/MatrixCompare.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::MatrixCompare;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/MatrixFieldType.pm
Normal file
19
t/tests/Test/WebGUI/Form/MatrixFieldType.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::MatrixFieldType;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/MimeType.pm
Normal file
19
t/tests/Test/WebGUI/Form/MimeType.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::MimeType;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::Combo/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/SelectRichEditor.pm
Normal file
19
t/tests/Test/WebGUI/Form/SelectRichEditor.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::SelectRichEditor;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/SelectSlider.pm
Normal file
19
t/tests/Test/WebGUI/Form/SelectSlider.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::SelectSlider;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Submit.pm
Normal file
19
t/tests/Test/WebGUI/Form/Submit.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Submit;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::Button/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/SubscriptionGroup.pm
Normal file
19
t/tests/Test/WebGUI/Form/SubscriptionGroup.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::SubscriptionGroup;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Template.pm
Normal file
19
t/tests/Test/WebGUI/Form/Template.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Template;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/ThingFieldsList.pm
Normal file
19
t/tests/Test/WebGUI/Form/ThingFieldsList.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::ThingFieldsList;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::SelectList/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/TimeField.pm
Normal file
19
t/tests/Test/WebGUI/Form/TimeField.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::TimeField;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/TimeZone.pm
Normal file
19
t/tests/Test/WebGUI/Form/TimeZone.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::TimeZone;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/User.pm
Normal file
19
t/tests/Test/WebGUI/Form/User.pm
Normal 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::Control/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/Vendor.pm
Normal file
19
t/tests/Test/WebGUI/Form/Vendor.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Vendor;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::SelectList/;
|
||||
|
||||
1;
|
||||
19
t/tests/Test/WebGUI/Form/WhatNext.pm
Normal file
19
t/tests/Test/WebGUI/Form/WhatNext.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::WhatNext;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/Workflow.pm
Normal file
19
t/tests/Test/WebGUI/Form/Workflow.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::Workflow;
|
||||
#-------------------------------------------------------------------
|
||||
# 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/YesNo.pm
Normal file
19
t/tests/Test/WebGUI/Form/YesNo.pm
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Test::WebGUI::Form::YesNo;
|
||||
#-------------------------------------------------------------------
|
||||
# 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::RadioList/;
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue