X-Git-Url: http://git.shiar.nl/perl/html-form-simple.git/blobdiff_plain/cb6c92feb70f4246804078114bb8ef37874ab1cd..d74d61d638a9f0c83f3860de02225c16309ccf2d:/t/html.t diff --git a/t/html.t b/t/html.t index c646cdb..3c6d8f4 100644 --- a/t/html.t +++ b/t/html.t @@ -5,7 +5,7 @@ use warnings; use Test::More; -plan tests => 50; +plan tests => 53; use_ok('HTML::Form::Simple'); @@ -52,7 +52,20 @@ is( 'hidden' ); -#TODO: hidden options +is( + $form->hidden(undef, undef, {value => 'bar', name => 'foo', id => 'foo'}), + '', + 'hidden options' +); + +is_deeply( + [ $form->hidden({2 => 0, 10 => 1}, {class => 'test'}) ], + [ + '', + '', + ], + 'hidden hash' +); # submit @@ -282,7 +295,7 @@ is( ); is( - $form->radio(foo => undef, [2]), #TODO + $form->radio(foo => undef, 2), '', 'labelless radio' ); @@ -365,6 +378,18 @@ is_deeply( 'multiple checked checkboxes' ); +{ + local $, = ' | '; + is( + scalar $form->check(foo => [1, 0], {value => 0}), + join(' | ', + '', + '', + ), + 'merged checkboxes' + ); +} + is_deeply( [ $form->check(undef, [{value => 4, type => 'radio'}], [1, 0, 0], {value => 3}) ], [