aboutsummaryrefslogtreecommitdiff
path: root/t/errors.t
blob: 842c3449ca6b37cd0596070f6e0119054d121e5f (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::Filters 'filter';

our $VERSION = 0.05;

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