1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!perl
package Foo;
sub new { my $class = shift; return bless [ { vh => 5150, r => 2112 }, { foo => 'bar' } ], $class }
package main;
use warnings;
use strict;
use Test::More tests => 8;
use Carp::Assert::More;
local $@;
$@ = '';
# {} is not a arrayref
eval {
assert_aoh( {} );
};
like( $@, qr/Assertion.*failed/ );
# A hashref is not a arrayref.
my $ref = { foo => 'foo', bar => 'bar' };
eval {
assert_aoh( $ref );
};
like( $@, qr/Assertion.*failed/ );
# 3 is not a arrayref
eval {
assert_aoh( 3 );
};
like( $@, qr/Assertion.*failed/ );
# [] is a arrayref
eval {
assert_aoh( [] );
};
is( $@, '' );
# Arrayref is OK, but it doesn't contain hashrefs.
# a ref to a list with stuff in it is a arrayref
my @ary = ('foo', 'bar', 'baaz');
eval {
assert_aoh( \@ary );
};
like( $@, qr/Assertion.*failed/ );
# Everything in the arrayref has to be a hash.
@ary = ( { foo => 'bar' }, 'scalar' );
eval {
assert_aoh( \@ary );
};
like( $@, qr/Assertion.*failed/ );
# sub {} is not a arrayref
eval {
assert_aoh( sub {} );
};
like( $@, qr/Assertion.*failed/ );
# The return from a constructor is an AOH so it should pass.
eval {
assert_aoh( Foo->new );
};
is( $@, '' );
exit 0;
|