File Coverage

blib/lib/Test2/Warnings.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1 1     1   242683 use strict;
  1         3  
  1         40  
2 1     1   6 use warnings;
  1         2  
  1         94  
3             package Test2::Warnings;
4             # vim: set ts=8 sts=2 sw=2 tw=100 et :
5             # ABSTRACT: Test for warnings and the lack of them
6             # KEYWORDS: testing tests warnings Test2
7              
8             our $VERSION = '0.038';
9              
10 1     1   587 use parent 'Exporter';
  1         327  
  1         9  
11 1     1   655 use Test::Warnings;
  1         4  
  1         8  
12              
13             sub import {
14 1     1   14 goto \&Test::Warnings::import;
15             }
16              
17             1;
18              
19             __END__