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
|
use strict;
use warnings;
use Test::More tests => 2;
use HTML::FormFu;
use lib 't/lib';
use DBICTestLib 'new_schema';
use MySchema;
my $form = HTML::FormFu->new;
$form->load_config_file('t/options_from_model/belongs_to_combobox.yml');
my $schema = new_schema();
$form->stash->{schema} = $schema;
my $type_rs = $schema->resultset('Type');
my $type2_rs = $schema->resultset('Type2');
{
# types
$type_rs->delete;
$type_rs->create( { type => 'type 1' } );
$type_rs->create( { type => 'type 2' } );
$type_rs->create( { type => 'type 3' } );
$type2_rs->delete;
$type2_rs->create( { type => 'type 1' } );
$type2_rs->create( { type => 'type 2' } );
$type2_rs->create( { type => 'type 3' } );
}
$form->process;
is(
$form->get_field('type'),
qq{<div class="combobox">
<span class="elements">
<select name="type_select">
<option value=""></option>
<option value="1">type 1</option>
<option value="2">type 2</option>
<option value="3">type 3</option>
</select>
<input name="type_text" type="text" />
</span>
</div>}
);
is(
$form->get_field('type2_id'),
qq{<div class="combobox">
<span class="elements">
<select name="type2_id_select">
<option value=""></option>
<option value="1">type 1</option>
<option value="2">type 2</option>
<option value="3">type 3</option>
</select>
<input name="type2_id_text" type="text" />
</span>
</div>}
);
|