aboutsummaryrefslogblamecommitdiff
path: root/t/errors.t
blob: 61112b1648494400eb5235f038bbcb4f8924a0ef (plain) (tree)
1
2
3
4
5
6
7
8
9







                          
                                
 
                      

               





                                                                                
#!perl -T

use strict;
use warnings;
use utf8;

use Test::More tests => 4;

use List::Breakdown 'breakdown';

our $VERSION = '0.11';

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' );