File Coverage

blib/lib/HashData/Sample/DeNiro.pm
Criterion Covered Total %
statement 22 22 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1             ## no critic: Modules::RequireFilenameMatchesPackage
2             package
3             HashDataRole::Sample::DeNiro;
4              
5 1     1   292964 use 5.010001;
  1         5  
6 1     1   8 use strict;
  1         3  
  1         68  
7 1     1   10 use warnings;
  1         2  
  1         56  
8              
9 1     1   493 use Role::Tiny;
  1         5730  
  1         5  
10              
11             around new => sub {
12             my $orig = shift;
13             $orig->(@_, separator => '::');
14             };
15              
16             package HashData::Sample::DeNiro;
17              
18 1     1   305 use 5.010001;
  1         3  
19 1     1   3 use strict;
  1         1  
  1         25  
20 1     1   4 use warnings;
  1         1  
  1         32  
21              
22 1     1   391 use Role::Tiny::With;
  1         263  
  1         158  
23              
24             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
25             our $DATE = '2024-11-04'; # DATE
26             our $DIST = 'HashDataRoles-Standard'; # DIST
27             our $VERSION = '0.005'; # VERSION
28              
29             with 'HashDataRole::Source::LinesInDATA';
30             with 'HashDataRole::Sample::DeNiro';
31              
32             1;
33             # ABSTRACT: Movies of Robert De Niro with their year
34              
35             =pod
36              
37             =encoding UTF-8
38              
39             =head1 NAME
40              
41             HashDataRole::Sample::DeNiro - Movies of Robert De Niro with their year
42              
43             =head1 VERSION
44              
45             This document describes version 0.005 of HashDataRole::Sample::DeNiro (from Perl distribution HashDataRoles-Standard), released on 2024-11-04.
46              
47             =head1 HOMEPAGE
48              
49             Please visit the project's homepage at L.
50              
51             =head1 SOURCE
52              
53             Source repository is at L.
54              
55             =head1 SEE ALSO
56              
57             L
58              
59             L
60              
61             =head1 AUTHOR
62              
63             perlancar
64              
65             =head1 CONTRIBUTING
66              
67              
68             To contribute, you can send patches by email/via RT, or send pull requests on
69             GitHub.
70              
71             Most of the time, you don't need to build the distribution yourself. You can
72             simply modify the code, then test via:
73              
74             % prove -l
75              
76             If you want to build the distribution (e.g. to try to install it locally on your
77             system), you can install L,
78             L,
79             L, and sometimes one or two other
80             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
81             that are considered a bug and can be reported to me.
82              
83             =head1 COPYRIGHT AND LICENSE
84              
85             This software is copyright (c) 2024 by perlancar .
86              
87             This is free software; you can redistribute it and/or modify it under
88             the same terms as the Perl 5 programming language system itself.
89              
90             =head1 BUGS
91              
92             Please report any bugs or feature requests on the bugtracker website L
93              
94             When submitting a bug or request, please include a test-file or a
95             patch to an existing test-file that illustrates the bug or desired
96             feature.
97              
98             =cut
99              
100             __DATA__