File Coverage

lib/OODoc/Text/Example.pm
Criterion Covered Total %
statement 15 20 75.0
branch 0 4 0.0
condition 0 2 0.0
subroutine 5 6 83.3
pod 0 1 0.0
total 20 33 60.6


line stmt bran cond sub pod time code
1             # Copyrights 2003-2013 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.00.
5              
6             package OODoc::Text::Example;
7 1     1   922 use vars '$VERSION';
  1         3  
  1         52  
8             $VERSION = '2.00';
9              
10 1     1   7 use base 'OODoc::Text';
  1         1  
  1         88  
11              
12 1     1   6 use strict;
  1         1  
  1         27  
13 1     1   5 use warnings;
  1         1  
  1         33  
14              
15 1     1   5 use Log::Report 'oodoc';
  1         2  
  1         6  
16              
17              
18             sub init($)
19 0     0 0   { my ($self, $args) = @_;
20 0   0       $args->{type} ||= 'Example';
21 0 0         $args->{container} = delete $args->{container} or panic;
22              
23 0 0         $self->SUPER::init($args)
24             or return;
25              
26 0           $self;
27             }
28              
29             #-------------------------------------------
30              
31             1;