aboutsummaryrefslogtreecommitdiff
path: root/t/errors.t
blob: 18260879d3c32a656df5cc2af9cb77706307e2cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl -T

use strict;
use warnings;
use utf8;

use Test::More tests => 4;

use List::Breakdown 'breakdown';

our $VERSION = 0.07;

my @t = 1 .. 3;
is( eval { breakdown { a => undef }, @t } || undef, undef, 'error_notref_undef' );
is( eval { breakdown { a => 'a' },   @t } || undef, undef, 'error_notref_def' );
is( eval { breakdown { a => [] },    @t } || undef, undef, 'error_badref_array' );
is( eval { breakdown { a => \{} },   @t } || undef, undef, 'error_badref_double' );