File Coverage

blib/lib/Parse/Pyapp.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Parse::Pyapp;
2 1     1   6693 use 5.006;
  1         5  
  1         53  
3 1     1   6 use strict;
  1         2  
  1         72  
4             our $VERSION = '0.01';
5              
6 1     1   552 use Parse::Pyapp::Parser;
  1         3  
  1         81  
7             our @ISA = qw( Parse::Pyapp::Parser);
8              
9             sub new {
10 1     1 0 116 bless {
11             symcount => 0,
12             }, shift;
13             }
14              
15             1;
16             __END__