File Coverage

blib/lib/Test2/Bundle/More.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 35 35 100.0


line stmt bran cond sub pod time code
1             package Test2::Bundle::More;
2 3     3   1276 use strict;
  3         17  
  3         85  
3 3     3   16 use warnings;
  3         11  
  3         115  
4              
5             our $VERSION = '0.000153';
6              
7 3     3   1182 use Test2::Plugin::ExitSummary;
  3         10  
  3         20  
8              
9 3         294 use Test2::Tools::Basic qw{
10             ok pass fail skip todo diag note
11             plan skip_all done_testing bail_out
12 3     3   1454 };
  3         7  
13              
14 3         295 use Test2::Tools::ClassicCompare qw{
15             is is_deeply isnt like unlike cmp_ok
16 3     3   1285 };
  3         10  
17              
18 3     3   1205 use Test2::Tools::Class qw/can_ok isa_ok/;
  3         10  
  3         181  
19 3     3   1193 use Test2::Tools::Subtest qw/subtest_streamed/;
  3         8  
  3         232  
20              
21             BEGIN {
22 3     3   12 *BAIL_OUT = \&bail_out;
23 3         127 *subtest = \&subtest_streamed;
24             }
25              
26             our @EXPORT = qw{
27             ok pass fail skip todo diag note
28             plan skip_all done_testing BAIL_OUT
29              
30             is isnt like unlike is_deeply cmp_ok
31              
32             isa_ok can_ok
33              
34             subtest
35             };
36 3     3   20 use base 'Exporter';
  3         185  
  3         304  
37              
38             1;
39              
40             __END__