File: textcsv.t

package info (click to toggle)
libhtml-formhandler-perl 0.40057-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,320 kB
  • ctags: 685
  • sloc: perl: 8,849; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 875 bytes parent folder | download
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
use strict;
use warnings;
use Test::More;

# tests the TextCSV field
{
    package MyApp::Form::Test;
    use HTML::FormHandler::Moose;
    extends 'HTML::FormHandler';

    has_field 'foo' => ( type => 'TextCSV' );
    has_field 'bar' => ( type => 'TextCSV' );

}

my $form = MyApp::Form::Test->new;
ok( $form );
my $init_obj = { foo => [1,4,5], bar => ['1,2'] };

$form->process( init_object => $init_obj );
my $fif = $form->fif;
is_deeply( $fif, { foo => '1,4,5', bar => '1,2' },
   'fif is correct' );

my $rendered = $form->render;
ok( $rendered, 'rendering worked' );

my $params = { foo => '', bar => '1,2'  };
$form->process( $params );
$fif = $form->fif;
is_deeply( $fif, $params, 'fif ok' );
my $value = $form->value;
is_deeply( $value, { foo => undef, bar => [1,2] }, 'right value' );
$rendered = $form->render;
ok( $rendered, 'rendering worked' );

done_testing;