Last active
August 29, 2015 13:55
-
-
Save notbenh/8742447 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=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