File Coverage

blib/lib/Dallycot.pm
Criterion Covered Total %
statement 13 15 86.6
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 20 90.0


line stmt bran cond sub pod time code
1             package Dallycot;
2             $Dallycot::VERSION = '0.151630';
3             our $AUTHORITY = 'cpan:JSMITH';
4 1     1   287580 use strict;
  1         1  
  1         28  
5 1     1   3 use warnings;
  1         2  
  1         18  
6              
7             # ABSTRACT: A linked open code language and processor
8              
9 1     1   8 use utf8;
  1         1  
  1         5  
10              
11 1     1   458 use Dallycot::Parser;
  1         3  
  1         248  
12 1     1   579 use Dallycot::Processor;
  0            
  0            
13             use Dallycot::Value;
14              
15             1;