File Coverage

blib/lib/Devel/Assert/Global.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package #hide from PAUSE
2             Devel::Assert::Global;
3 1     1   13894 use strict;
  1         3  
  1         55  
4              
5             sub import {
6 1     1   274 require Devel::Assert;
7 1         3 push @_, 'global';
8 1         3 goto &Devel::Assert::import;
9             }
10              
11             1;
12