--- lib/PXElator/t/html.t 2009/08/06 22:15:09 171 +++ lib/PXElator/t/html.t 2009/08/06 22:27:34 172 @@ -4,12 +4,15 @@ use strict; use autodie; -use Test::More tests => 3; +use Test::More tests => 4; use_ok 'html'; ok( my $html = html::table( 2, qw/a1 a2 b1 b2 c1 c2/ ), 'table' ); diag $html; +ok( $html = html::table( -3, qw/h1 h2 h3 a1 a2 a3 b1 b2 b3/ ), 'table' ); +diag $html; + ok( $html = html::select( 'dropdown', 2, 1, 2, 3 ), 'select' ); diag $html;