File Coverage

blib/lib/POOF/Example/SyntaxError.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod n/a
total 16 18 88.8


line stmt bran cond sub pod time code
1             package POOF::Example::SyntaxError;
2            
3 1     1   759 use strict;
  1         2  
  1         38  
4 1     1   6 use warnings;
  1         2  
  1         37  
5            
6 1     1   7 use base qw(POOF);
  1         1  
  1         1024  
7            
8            
9             #-------------------------------------------------------------------------------
10             # init
11            
12             #-------------------------------------------------------------------------------
13             # properties
14            
15             sub SomeProperty : Property Public
16             {
17             {
18 0     0     'type' => 'integer',
19             'default' => 0,
20             }
21 1     1   7 }
  1         2  
  1         8  
22            
23             #-------------------------------------------------------------------------------
24             # methods
25            
26             sub SomeMethod : Method Public
27             {
28             my $obj = shift;
29             asdf
30             }
31            
32            
33             1;
34             __END__