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
|
#!perl
package Foo;
sub new { my $class = shift; return bless [@_], $class; }
package main;
use warnings;
use strict;
use Test::More tests => 11;
use Carp::Assert::More;
use Test::Exception;
my $FAILED = qr/Assertion failed/;
# {} is not an arrayref.
throws_ok( sub { assert_arrayref_nonempty( {} ) }, $FAILED );
# A ref to a hash with stuff in it is not an arrayref.
my $ref = { foo => 'foo', bar => 'bar' };
throws_ok( sub { assert_arrayref_nonempty( $ref ) }, $FAILED );
# 3 is not an arrayref.
throws_ok( sub { assert_arrayref_nonempty( 3 ) }, $FAILED );
# [] is a nonempty arrayref.
lives_ok( sub { assert_arrayref_nonempty( [ 3 ] ) } );
lives_ok( sub { assert_arrayref_nonempty( [ undef ] ) } );
# [] is an empty arrayref.
throws_ok( sub { assert_arrayref_nonempty( [] ) }, $FAILED );
# A ref to a list with stuff in it is an arrayref.
my @ary = ('foo', 'bar', 'baaz');
lives_ok( sub { assert_arrayref_nonempty( \@ary ) } );
my @empty_ary = ();
throws_ok( sub { assert_arrayref_nonempty( \@empty_ary ) }, $FAILED );
# A coderef is not an arrayref.
my $coderef = sub {};
throws_ok( sub { assert_arrayref_nonempty( $coderef ) }, $FAILED );
# Foo->new->isa("ARRAY") returns true, but check emptiness.
lives_ok( sub { assert_arrayref_nonempty( Foo->new( 14 ) ) } );
throws_ok( sub { assert_arrayref_nonempty( Foo->new ) }, $FAILED );
exit 0;
|