File Coverage

blib/lib/Image/TextMode/Format/AVATAR.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::AVATAR;
2              
3 1     1   1059 use Moo;
  1         13719  
  1         5  
4              
5             extends 'Image::TextMode::Format', 'Image::TextMode::Canvas';
6              
7 1     1 1 769 sub extensions { return 'avt' }
8              
9             =head1 NAME
10              
11             Image::TextMode::Format::AVATAR - read and write AVATAR files
12              
13             =head1 DESCRIPTION
14              
15             AVATAR stands for Advanced Video Attribute Terminal Assembler and Recreator.
16             By using shorter, binary-based "escape codes" the AVATAR format generally
17             produces smaller files in comparison to ANSI-standard files.
18              
19             =head1 METHODS
20              
21             =head2 new( %args )
22              
23             Creates a AVATAR instance.
24              
25             =head2 extensions( )
26              
27             Returns 'avt'.
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;