File Coverage

blib/lib/Data/Sah/Type/timeofday.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 1     1   379  
  1         2  
  1         29  
4             use Data::Sah::Util::Role 'has_clause';
5 1     1   388 use Role::Tiny;
  1         25  
  1         53  
6 1     1   6 use Role::Tiny::With;
  1         1  
  1         5  
7 1     1   111  
  1         6  
  1         94  
8             with 'Data::Sah::Type::BaseType';
9             with 'Data::Sah::Type::Comparable';
10             with 'Data::Sah::Type::Sortable';
11              
12             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
13             our $DATE = '2022-09-30'; # DATE
14             our $DIST = 'Data-Sah'; # DIST
15             our $VERSION = '0.913'; # VERSION
16              
17             1;
18             # ABSTRACT: timeofday type
19              
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Data::Sah::Type::timeofday - timeofday type
28              
29             =head1 VERSION
30              
31             This document describes version 0.913 of Data::Sah::Type::timeofday (from Perl distribution Data-Sah), released on 2022-09-30.
32              
33             =for Pod::Coverage ^(clause_.+|clausemeta_.+)$
34              
35             =head1 HOMEPAGE
36              
37             Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah>.
38              
39             =head1 SOURCE
40              
41             Source repository is at L<https://github.com/perlancar/perl-Data-Sah>.
42              
43             =head1 AUTHOR
44              
45             perlancar <perlancar@cpan.org>
46              
47             =head1 CONTRIBUTING
48              
49              
50             To contribute, you can send patches by email/via RT, or send pull requests on
51             GitHub.
52              
53             Most of the time, you don't need to build the distribution yourself. You can
54             simply modify the code, then test via:
55              
56             % prove -l
57              
58             If you want to build the distribution (e.g. to try to install it locally on your
59             system), you can install L<Dist::Zilla>,
60             L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
61             L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
62             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
63             that are considered a bug and can be reported to me.
64              
65             =head1 COPYRIGHT AND LICENSE
66              
67             This software is copyright (c) 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 by perlancar <perlancar@cpan.org>.
68              
69             This is free software; you can redistribute it and/or modify it under
70             the same terms as the Perl 5 programming language system itself.
71              
72             =head1 BUGS
73              
74             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Sah>
75              
76             When submitting a bug or request, please include a test-file or a
77             patch to an existing test-file that illustrates the bug or desired
78             feature.
79              
80             =cut