in reply to Perl6::Form verbatim won't do what I want
Anyway, it seems that "verbatim fields" and "width specifications" (with or w/o "+") don't mix. so, the only test I could make work was:is( $got3, "#$var#", "''''");
Update: apparently this also works:# exactly seven chars in the field: my $got3 = form "#{'''''}#", $var; is( $got3, "#$var#\n", "'''''");
my $got1 = form "#{'(7)'}#", $var; is( $got1, "#$var#\n", "'(7)'");
|
|---|