File Coverage

blib/lib/MsgPack/Decoder/Generator/Noop.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package MsgPack::Decoder::Generator::Noop;
2             our $AUTHORITY = 'cpan:YANICK';
3             $MsgPack::Decoder::Generator::Noop::VERSION = '2.0.3';
4 3     3   1602 use Moose;
  3         9  
  3         19  
5 3     3   18370 use MooseX::MungeHas 'is_ro';
  3         8  
  3         20  
6              
7             extends 'MsgPack::Decoder::Generator';
8              
9 23     23   844 has '+bytes' => sub { 0 };
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             MsgPack::Decoder::Generator::Noop
22              
23             =head1 VERSION
24              
25             version 2.0.3
26              
27             =head1 AUTHOR
28              
29             Yanick Champoux <yanick@cpan.org>
30              
31             =head1 COPYRIGHT AND LICENSE
32              
33             This software is copyright (c) 2019, 2017, 2016, 2015 by Yanick Champoux.
34              
35             This is free software; you can redistribute it and/or modify it under
36             the same terms as the Perl 5 programming language system itself.
37              
38             =cut