File: form-label.t

package info (click to toggle)
libhtml-form-perl 6.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 352 kB
  • sloc: perl: 2,052; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 551 bytes parent folder | download | duplicates (2)
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
#!perl

use strict;
use warnings;

use Test::More tests => 2;
use HTML::Form;

{
    my $form = HTML::Form->parse(
        <<"EOT", base => "http://example.com", strict => 1 );
<form>
 <label>
   <input name="tt" type="text" value="test content">
 </label>
</form>
EOT
    is( $form->param('tt'), 'test content' );

}

{
    my $form = HTML::Form->parse(
        <<"EOT", base => "http://example.com", strict => 1 );
<form>
 <label>
   <textarea name="tt">test content</textarea>
 </label>
</form>
EOT

    is( $form->param('tt'), 'test content' );
}