Skip to content

Instantly share code, notes, and snippets.

@notbenh
Last active August 29, 2015 13:55
Show Gist options
  • Save notbenh/8742447 to your computer and use it in GitHub Desktop.
Save notbenh/8742447 to your computer and use it in GitHub Desktop.
=head2 set_mfields
Wrapper around set_feilds to allow for a more flexible syntax.
$mech->set_mfields( $name => [ foo => 2, bar => 3] );
$mech->set_mfields( $name => [ foo => [2,3]] );
=cut
sub set_mfields {
my $self = shift;
my %input = @_;
while ( my ( $name, $def ) = each %input ) {
if( ref $def eq 'ARRAY' ){
my @def_copy = @$def;
while( my ($set_to,$position) = splice @def_copy, 0, 2) {
if( ref $position eq 'ARRAY' ){
$self->set_fields($name => [$set_to,$_]) for @$position;
}
else{
$self->set_fields($name => [$set_to,$position]);
}
}
}
else{
$self->set_fields($name => $def);
} # while
} # set_fields()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment