File Coverage

blib/lib/Image/TextMode/Format/PCBoard.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 1 1 100.0
total 7 7 100.0


line stmt bran cond sub pod time code
1             package Image::TextMode::Format::PCBoard;
2              
3 1     1   1054 use Moo;
  1         12501  
  1         5  
4              
5             extends 'Image::TextMode::Format', 'Image::TextMode::Canvas';
6              
7 1     1 1 405 sub extensions { return 'pcb' }
8              
9             =head1 NAME
10              
11             Image::TextMode::Format::PCBoard - read and write PCBoard files
12              
13             =head1 DESCRIPTION
14              
15             A PCBoard file is very much like an ANSI file. It uses C<@> as the "escape
16             sequence marker" and provides some basic variable substitution for items
17             delimited by C<@> on either end (e.g. C<@USER@>).
18              
19             =head1 METHODS
20              
21             =head2 new( %args )
22              
23             Creates a PCBoard instance.
24              
25             =head2 extensions( )
26              
27             Returns 'pcb'.
28              
29             =head1 AUTHOR
30              
31             Brian Cassidy Ebricas@cpan.orgE
32              
33             =head1 COPYRIGHT AND LICENSE
34              
35             Copyright 2008-2014 by Brian Cassidy
36              
37             This library is free software; you can redistribute it and/or modify
38             it under the same terms as Perl itself.
39              
40             =cut
41              
42             1;