The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

# get it in array context and # check that our arrays are equal my @children = $tree.get_all_children(); ok eq_array(\@children, [ $sub_tree, $sub_tree_2, $sub_tree_3, $sub_tree_4 ]);

# check that the values from both # contexts are equal to one another ok eq_array($children, \@children);

# now check that the siblings of all the # sub_trees are the same as the children foreach my $_sub_tree (@children) { # test siblings in item context my $siblings = $sub_tree.get_all_siblings(); ok eq_array($children, $siblings); # and now in array context my @siblings = $sub_tree.get_all_siblings(); ok eq_array($children, \@siblings); }

10 POD Errors

The following errors were encountered while parsing the POD:

Around line 229:

=pod directives shouldn't be over one line long! Ignoring all 5 lines of content

Around line 289:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 312:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 350:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 373:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 432:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 485:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 546:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 608:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content

Around line 661:

=pod directives shouldn't be over one line long! Ignoring all 4 lines of content