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
|
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/deprecated-save_to_model/basic.yml');
my $schema = new_schema();
my $rs = $schema->resultset('Master');
{
my $row = $rs->new_result( { checkbox_col => 'xyzfoo', } );
$row->insert;
}
# an unchecked Checkbox causes no key/value to be submitted at all
# this is a problem for NOT NULL columns
# ensure the column's default value gets inserted
$form->process( { id => 1, } );
{
my $row = $rs->find(1);
{
my $warnings;
local $SIG{ __WARN__ } = sub { $warnings++ };
$form->save_to_model($row);
ok( $warnings, 'warning thrown' );
}
}
{
my $row = $rs->find(1);
is( $row->checkbox_col, '0' );
}
|