File Coverage

blib/lib/MARC/Moose/Reader.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package MARC::Moose::Reader;
2             # ABSTRACT: Base class for a reader returning MARC::Moose records
3             $MARC::Moose::Reader::VERSION = '1.0.46';
4 2     2   4594 use Moose::Role;
  2         5  
  2         14  
5 2     2   10326 use MARC::Moose::Lint::Checker;
  2         6  
  2         141  
6              
7             with 'MooseX::RW::Reader';
8              
9              
10              
11              
12             has parser => (
13             is => 'rw', isa => 'MARC::Moose::Parser',
14             );
15              
16              
17              
18             1;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             MARC::Moose::Reader - Base class for a reader returning MARC::Moose records
29              
30             =head1 VERSION
31              
32             version 1.0.46
33              
34             =head1 ATTRIBUTES
35              
36             =head2 parser
37              
38             L<MARC::Moose::Parser> parser used to parse records that have been read.
39              
40             =head1 AUTHOR
41              
42             Frédéric Demians <f.demians@tamil.fr>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2022 by Frédéric Demians.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut