Skip to content

Commit d0f2b80

Browse files
simbabqueoalders
authored andcommittedJul 28, 2022
add tests for textarea with field method libwww-perl#220
1 parent 895a635 commit d0f2b80

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed
 

‎Changes

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Revision history for WWW::Mechanize
77
- We now consistently use our own die() method and therefore the onerror
88
handler wherever possible (GH#80) (Julien Fiegehenn)
99

10+
[TESTS]
11+
- Add tests for field() when working on a <textarea> (GH#220) (Julien
12+
Fiegehenn)
13+
1014
2.12 2022-07-20 06:45:40Z
1115

1216
[ENHANCEMENTS]

‎t/field.html

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<input type="hidden" name="__value" value>
1414
<input type="hidden" name="__value_empty" value="">
1515
<input type="hidden" name="__value_full" value="full">
16+
<textarea rows="5" cols="60" id="textarea_id" name="textarea_name"></textarea>
1617
</FORM>
1718
</BODY>
1819
</HTML>

‎t/field.t

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use warnings;
44
use strict;
5-
use Test::More tests => 14;
5+
use Test::More;
66
use URI::file;
77

88
BEGIN {
@@ -29,6 +29,10 @@ $mech->set_visible( [ radio => 'wongo!' ], 'boingo' );
2929
is( $mech->value( 'wango' ), 'wongo!', 'wango changed' );
3030
is( $mech->value( 'dingo', 2 ), 'boingo', 'dingo changed' );
3131

32+
ok( ! $mech->value( 'textarea_name' ), 'textarea is empty' );
33+
$mech->field( 'textarea_name' => 'foobar' );
34+
is( $mech->value( 'textarea_name' ), 'foobar', 'textarea has been populated' );
35+
3236
for my $name (qw/__no_value __value_empty/) {
3337
ok( ! $mech->value( $name ), "$name is empty" ) or diag $mech->field($name);
3438
$mech->field( $name, 'foo');
@@ -42,4 +46,6 @@ for my $name (qw/__value/) {
4246
}
4347
$mech->field( $name, 'foo');
4448
is( $mech->value( $name ), 'foo', "$name changed" );
45-
}
49+
}
50+
51+
done_testing;

0 commit comments

Comments
 (0)
Please sign in to comment.