File Coverage

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


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