File: 43-bag-on-empty.t

package info (click to toggle)
libtest-simple-perl 1.302211-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,972 kB
  • sloc: perl: 19,894; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use Test2::Bundle::Extended;

my $got = intercept {
    my $check = bag {
        item 'a';
        item 'b';
        end();    # Ensure no other elements exist.
    };

    is([], $check, 'All of the elements from bag found!');    # passes but shouldn't
};

like(
    $got,
    array {
        event Fail => sub {};
    },
    "Bag check on empty array"
);

done_testing;