File Coverage

blib/lib/App/XML/DocBook/Docmake/CmdComponent.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package App::XML::DocBook::Docmake::CmdComponent;
2             $App::XML::DocBook::Docmake::CmdComponent::VERSION = '0.1101';
3 4     4   405943 use strict;
  4         14  
  4         171  
4 4     4   23 use warnings;
  4         8  
  4         320  
5              
6             use Class::XSAccessor {
7 4         35 accessors => [
8              
9             qw(
10             is_input
11             is_output
12             )
13             ]
14 4     4   2744 };
  4         13697  
15              
16             sub new
17             {
18 25     25 1 60 my ( $class, $self ) = @_;
19 25         138 return bless $self, $class;
20             }
21              
22             1;
23              
24             __END__