Help for this page

Select Code to Download


  1. or download this
    my $list = $object->foundation_list;
    ok( ref( $list ) eq 'ARRAY', 'returned a list' );
    ok( scalar( @$list ), 'returned a populated list' );
    ok( ref( $list->[0] ) eq 'HASH', 'first element is a hashref ...' );
    
  2. or download this
    is_deeply( $object->foundation_list, [ { ... whatever ... } ] );