added client hostname and deploy of configuration over web
[pxelator] / lib / PXElator / t / html.t
index 4bac0c4..289de0b 100755 (executable)
@@ -4,10 +4,12 @@ use warnings;
 use strict;
 use autodie;
 
-use Test::More tests => 2;
+use Test::More tests => 3;
 
 use_ok 'html';
 
 ok( my $html = html::table( 2, qw/a1 a2 b1 b2 c1 c2/ ), 'table' );
 diag $html;
 
+ok( $html = html::select( 'dropdown', 2, 1, 2, 3 ), 'select' );
+diag $html;