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   1332 use strict;
  3         18  
  3         84  
3 3     3   15 use warnings;
  3         7  
  3         115  
4              
5             our $VERSION = '0.000155';
6              
7 3     3   1231 use Test2::Plugin::ExitSummary;
  3         13  
  3         19  
8              
9 3         277 use Test2::Tools::Basic qw{
10             ok pass fail skip todo diag note
11             plan skip_all done_testing bail_out
12 3     3   1557 };
  3         9  
13              
14 3         296 use Test2::Tools::ClassicCompare qw{
15             is is_deeply isnt like unlike cmp_ok
16 3     3   1312 };
  3         10  
17              
18 3     3   1380 use Test2::Tools::Class qw/can_ok isa_ok/;
  3         7  
  3         191  
19 3     3   1180 use Test2::Tools::Subtest qw/subtest_streamed/;
  3         8  
  3         229  
20              
21             BEGIN {
22 3     3   17 *BAIL_OUT = \&bail_out;
23 3         178 *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   21 use base 'Exporter';
  3         225  
  3         322  
37              
38             1;
39              
40             __END__