line |
true |
false |
branch |
35
|
0 |
0 |
if (defined $multi and my $code = $controller->can($complete_method) and $multi->complete)
|
53
|
3 |
31 |
if (my $code = $controller->can($submitted_method) and $form->submitted)
|
68
|
1 |
33 |
if (my $code = $controller->can($valid_method) and $form->submitted_and_valid)
|
76
|
1 |
0 |
unless defined $multi
|
86
|
0 |
0 |
if (defined $multi and my $code = $controller->can($not_complete_method) and $form->submitted and not $multi->complete)
|
102
|
2 |
3 |
if (my $code = $controller->can($not_valid_method) and $form->submitted and $form->has_errors)
|
117
|
2 |
32 |
if (my $code = $controller->can($not_submitted_method) and not $form->submitted)
|
132
|
4 |
30 |
if ($run_form_render_action and my $code = $controller->can($render_method))
|