File: before_incl.t

package info (click to toggle)
liblist-moreutils-perl 0.430-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,228 kB
  • sloc: perl: 13,167; makefile: 17
file content (32 lines) | stat: -rw-r--r-- 701 bytes parent folder | download
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
#!perl

use strict ("subs", "vars", "refs");
use warnings ("all");
BEGIN { $ENV{LIST_MOREUTILS_PP} = 1; }
END { delete $ENV{LIST_MOREUTILS_PP} } # for VMS
use lib ("t/lib");
use List::MoreUtils (":all");


use Test::More;
use Test::LMU;

my @x = before_incl { $_ % 5 == 0 } 1 .. 9;
is_deeply(\@x, [1, 2, 3, 4, 5], "before 5, included");

@x = before_incl { /foo/ } qw{bar baz};
is_deeply(\@x, [qw{bar baz}]);

@x = before_incl { /f/ } qw{bar baz foo};
is_deeply(\@x, [qw{bar baz foo}], "before /f/, included");

leak_free_ok(
    before_incl => sub {
        @x = before_incl { /z/ } qw{ bar baz foo };
    }
);
is_dying('before_incl without sub' => sub { &before_incl(42, 4711); });

done_testing;