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   1450 use strict;
  3         17  
  3         88  
3 3     3   15 use warnings;
  3         17  
  3         114  
4              
5             our $VERSION = '0.000156';
6              
7 3     3   1269 use Test2::Plugin::ExitSummary;
  3         12  
  3         28  
8              
9 3         308 use Test2::Tools::Basic qw{
10             ok pass fail skip todo diag note
11             plan skip_all done_testing bail_out
12 3     3   1589 };
  3         8  
13              
14 3         302 use Test2::Tools::ClassicCompare qw{
15             is is_deeply isnt like unlike cmp_ok
16 3     3   1401 };
  3         11  
17              
18 3     3   1354 use Test2::Tools::Class qw/can_ok isa_ok/;
  3         7  
  3         212  
19 3     3   1282 use Test2::Tools::Subtest qw/subtest_streamed/;
  3         7  
  3         214  
20              
21             BEGIN {
22 3     3   12 *BAIL_OUT = \&bail_out;
23 3         146 *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   19 use base 'Exporter';
  3         178  
  3         493  
37              
38             1;
39              
40             __END__