File Coverage

lib/Pod/PseudoPod/Book/Command/buildlatex.pm
Criterion Covered Total %
statement 21 23 91.3
branch n/a
condition n/a
subroutine 7 8 87.5
pod 1 1 100.0
total 29 32 90.6


line stmt bran cond sub pod time code
1             package Pod::PseudoPod::Book::Command::buildlatex;
2             # ABSTRACT: command module for C<ppbook buildlatex>
3              
4 2     2   2338 use parent 'Pod::PseudoPod::Book::Command';
  2         6  
  2         19  
5              
6 2     2   167 use strict;
  2         5  
  2         53  
7 2     2   13 use warnings;
  2         5  
  2         64  
8              
9 2     2   12 use autodie;
  2         4  
  2         18  
10 2     2   11501 use Path::Class;
  2         6  
  2         177  
11 2     2   18 use File::Basename;
  2         6  
  2         142  
12 2     2   1696 use Pod::PseudoPod::DOM::App::ToLaTeX;
  2         14786  
  2         228  
13              
14             sub execute
15             {
16 0     0 1   my ($self, $opt, $args) = @_;
17              
18 0           Pod::PseudoPod::DOM::App::ToLaTeX::process_files_with_output(
19             $self->map_chapters_to_output( 'tex', 'latex',
20             $self->get_built_chapters
21             )
22             );
23             }
24              
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Pod::PseudoPod::Book::Command::buildlatex - command module for C<ppbook buildlatex>
36              
37             =head1 VERSION
38              
39             version 1.20210620.2051
40              
41             =head1 AUTHOR
42              
43             chromatic <chromatic@wgz.org>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2011 by chromatic.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut