File Coverage

ex/inline_form.pl
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 1     1   455 use v5.10;
  1         3  
2 1     1   4 use strict;
  1         2  
  1         20  
3 1     1   4 use warnings;
  1         1  
  1         41  
4 1     1   581 use Form::Tiny::Inline;
  1         3  
  1         48  
5 1     1   530 use Types::Common::String qw(SimpleStr);
  1         61776  
  1         8  
6              
7             my $form = Form::Tiny::Inline->is(qw/strict/)->new(
8             field_defs => [
9             {
10             name => "input_file",
11             type => SimpleStr,
12             required => 1,
13             },
14             {
15             name => "output_file",
16             type => SimpleStr,
17             },
18             ],
19              
20             cleaner => sub {
21             my ($self, $data) = @_;
22              
23             $self->add_error("input and output is the same file")
24             if $data->{output_file} && $data->{input_file} eq $data->{output_file};
25             },
26             );
27              
28             $form->set_input(
29             {
30             input_file => "/home/user/test",
31             output_file => "/home/user/test_out",
32             }
33             );
34              
35             if ($form->valid) {
36             print "Yes, it works\n";
37             }
38              
39             # just for testing
40             $form;