update SelectBox test for new Form api

This commit is contained in:
Colin Kuskie 2008-04-27 03:09:31 +00:00
parent d744551c31
commit 0e1c5b35c3

View file

@ -118,9 +118,7 @@ is($cntl->getValue(1,2,3), 1, 'list returns first item');
is($session->form->selectBox(undef,'text'), 'text', 'text');
is($session->form->selectBox(undef,42), 42, 'int');
is($session->form->selectBox(undef,0), 0, 'zero');
is($session->form->selectBox(undef,undef), '', 'undef returns ""');
is($session->form->selectBox(undef,undef), 0, 'undef returns 0');
is($session->form->selectBox(undef,''), '', '""');
is($session->form->selectBox(undef,1,2,3), 1, 'list returns first item');
__END__