use strict; use warnings; use Test::More tests => 1; use HTML::FormFu; my $form = HTML::FormFu->new; my $proc = $form->output_processor( { type => 'Indent', indent => " " x 4, } ); my $input = <
Legend
    foo bar
Comment
INPUT my $output = <
Legend
    foo bar
Comment
OUTPUT is( $proc->process($input), $output );