File Coverage

blib/lib/YAMLScript/Common.pm
Criterion Covered Total %
statement 17 18 94.4
branch n/a
condition n/a
subroutine 7 8 87.5
pod 0 1 0.0
total 24 27 88.8


line stmt bran cond sub pod time code
1 10     10   70 use strict; use warnings;
  10     10   22  
  10         278  
  10         49  
  10         17  
  10         332  
2             package YAMLScript::Common;
3              
4 10     10   48 use Exporter 'import';
  10         29  
  10         420  
5 10     10   3997 use Lingy::Common();
  10         32852  
  10         309  
6              
7 0         0 BEGIN {
8             package Lingy::Common;
9 10     10   66 no warnings 'redefine';
  10     0   28  
  10         563  
10 15616     15616 0 5798016 sub RT { 'YAMLScript::RT' }
11             }
12              
13             BEGIN {
14 10     10   2383 Lingy::Common->import;
15             }
16              
17             our @EXPORT = @Lingy::Common::EXPORT;
18              
19             1;