1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
use strict;
use warnings;
use lib 't/lib';
use Test::More tests => 4;
use HTML::FormFu;
my $form = HTML::FormFu->new({
localize_class => 'HTMLFormFu::I18N',
tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' },
});
{
my $field = $form->element('Select')->name('foo');
$field->empty_first(1);
$field->empty_first_label('empty_label');
$field->options([ [ 1 => 'One' ], [ 2 => 'Two' ] ]);
my $field_xhtml = qq{<div class="select">
<select name="foo">
<option value="">empty_label</option>
<option value="1">One</option>
<option value="2">Two</option>
</select>
</div>};
is( "$field", $field_xhtml, 'stringified field' );
}
{
my $field = $form->element('Select')->name('foo');
$field->empty_first(1);
$field->empty_first_label('empty_label');
$field->values([qw/one two/]);
my $field_xhtml = qq{<div class="select">
<select name="foo">
<option value="">empty_label</option>
<option value="one">One</option>
<option value="two">Two</option>
</select>
</div>};
is( "$field", $field_xhtml, 'stringified field' );
}
{
my $field = $form->element('Select')->name('foo');
$field->empty_first(1);
$field->empty_first_label('empty_label');
$field->value_range([1, 2]);
my $field_xhtml = qq{<div class="select">
<select name="foo">
<option value="">empty_label</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
</div>};
is( "$field", $field_xhtml, 'stringified field' );
}
{
my $field = $form->element('Select')->name('foo');
$field->empty_first(1);
$field->empty_first_label_loc('test_label');
$field->options([ [ 1 => 'One' ], [ 2 => 'Two' ] ]);
my $field_xhtml = qq{<div class="select">
<select name="foo">
<option value="">My Label</option>
<option value="1">One</option>
<option value="2">Two</option>
</select>
</div>};
is( "$field", $field_xhtml, 'stringified field' );
}
|