Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

use strict;
use Test::More 'tests' => 3;
# Test.
my $obj = Data::HTML::Form->new;
is($obj->method, 'get', 'Get method (get - default).');
# Test.
$obj = Data::HTML::Form->new(
'method' => 'post',
);
is($obj->method, 'post', 'Get method (post).');