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.1004';
3 1     1   7 use strict;
  1         1  
  1         28  
4 1     1   4 use warnings;
  1         3  
  1         33  
5              
6             use Class::XSAccessor {
7 1         8 accessors => [
8              
9             qw(
10             is_input
11             is_output
12             )
13             ]
14 1     1   389 };
  1         2216  
15              
16             sub new
17             {
18 23     23 1 45 my ( $class, $self ) = @_;
19 23         98 return bless $self, $class;
20             }
21              
22             1;
23              
24             __END__