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
|
#!perl -Tw
package Foo;
sub new { my $class = shift; return bless {@_}, $class; }
package main;
use warnings;
use strict;
use Test::More tests => 7;
BEGIN { use_ok( 'Carp::Assert::More' ); }
local $@;
$@ = '';
# {} is a hashref
eval {
assert_hashref( {} );
};
is( $@, '' );
# a ref to a hash with stuff in it is a hashref
my %hash = ( foo => 'foo', bar => 'bar' );
eval {
assert_hashref( \%hash );
};
is( $@, '' );
# 3 is not a hashref
eval {
assert_hashref( 3 );
};
like( $@, qr/Assertion.*failed/ );
# [] is not a hashref
eval {
assert_hashref( [] );
};
like( $@, qr/Assertion.*failed/ );
# sub {} is not a hashref
eval {
assert_hashref( sub {} );
};
like( $@, qr/Assertion.*failed/ );
# Foo->new->isa("HASH") returns true, so do we
eval {
assert_hashref( Foo->new );
};
is( $@, '' );
|