diff --git a/t/tests/Test/WebGUI/Form/Combo.pm b/t/tests/Test/WebGUI/Form/Combo.pm new file mode 100644 index 000000000..30a829da5 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Combo.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Combo; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/CommentRating.pm b/t/tests/Test/WebGUI/Form/CommentRating.pm new file mode 100644 index 000000000..7b09148e7 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/CommentRating.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::CommentRating; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/ContentType.pm b/t/tests/Test/WebGUI/Form/ContentType.pm new file mode 100644 index 000000000..4d41c2424 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/ContentType.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::ContentType; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Country.pm b/t/tests/Test/WebGUI/Form/Country.pm new file mode 100644 index 000000000..c5f62d1c5 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Country.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Country; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/DataTable.pm b/t/tests/Test/WebGUI/Form/DataTable.pm new file mode 100644 index 000000000..287536029 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/DataTable.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::DataTable; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/DatabaseLink.pm b/t/tests/Test/WebGUI/Form/DatabaseLink.pm new file mode 100644 index 000000000..d2f516377 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/DatabaseLink.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::DatabaseLink; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Date.pm b/t/tests/Test/WebGUI/Form/Date.pm new file mode 100644 index 000000000..980a84080 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Date.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Date; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/DateTime.pm b/t/tests/Test/WebGUI/Form/DateTime.pm new file mode 100644 index 000000000..8d8259a71 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/DateTime.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::DateTime; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Div.pm b/t/tests/Test/WebGUI/Form/Div.pm new file mode 100644 index 000000000..936676f3e --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Div.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Div; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Email.pm b/t/tests/Test/WebGUI/Form/Email.pm new file mode 100644 index 000000000..5a8b1dc97 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Email.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Email; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/FieldType.pm b/t/tests/Test/WebGUI/Form/FieldType.pm new file mode 100644 index 000000000..a73dadc27 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/FieldType.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::FieldType; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/File.pm b/t/tests/Test/WebGUI/Form/File.pm new file mode 100644 index 000000000..42a15a69e --- /dev/null +++ b/t/tests/Test/WebGUI/Form/File.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::File; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/FilterContent.pm b/t/tests/Test/WebGUI/Form/FilterContent.pm new file mode 100644 index 000000000..f3d096ced --- /dev/null +++ b/t/tests/Test/WebGUI/Form/FilterContent.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::FilterContent; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Group.pm b/t/tests/Test/WebGUI/Form/Group.pm new file mode 100644 index 000000000..d23a72666 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Group.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Group; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/HexSlider.pm b/t/tests/Test/WebGUI/Form/HexSlider.pm new file mode 100644 index 000000000..9d4bc36b0 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/HexSlider.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::HexSlider; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/HiddenList.pm b/t/tests/Test/WebGUI/Form/HiddenList.pm new file mode 100644 index 000000000..dd348e252 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/HiddenList.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::HiddenList; +#------------------------------------------------------------------- +# 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; diff --git a/t/tests/Test/WebGUI/Form/Image.pm b/t/tests/Test/WebGUI/Form/Image.pm new file mode 100644 index 000000000..fbbd298e0 --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Image.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Image; +#------------------------------------------------------------------- +# 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::File/; + +1; diff --git a/t/tests/Test/WebGUI/Form/Interval.pm b/t/tests/Test/WebGUI/Form/Interval.pm new file mode 100644 index 000000000..679b6ed1d --- /dev/null +++ b/t/tests/Test/WebGUI/Form/Interval.pm @@ -0,0 +1,19 @@ +package Test::WebGUI::Form::Interval; +#------------------------------------------------------------------- +# 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;