File Coverage

blib/lib/Banal/Role/Fallback.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1 2     2   70817 use 5.014;
  2         38  
2 2     2   1407 use utf8;
  2         31  
  2         12  
3 2     2   117 use strict;
  2         6  
  2         109  
4 2     2   16 use warnings;
  2         59  
  2         268  
5              
6             package Banal::Role::Fallback; # git description: a65908e
7             # vim: set ts=2 sts=2 sw=2 tw=115 et :
8             # ABSTRACT: A Moo/Moose compatible incarnation of C
9             # KEYWORDS: author utility
10              
11             our $VERSION = '0.001';
12             # AUTHORITY
13              
14              
15 2     2   1110 use namespace::autoclean;
  2         38702  
  2         8  
16 2     2   1105 use Moo::Role;
  2         26332  
  2         12  
17             with 'Banal::Role::Fallback::Tiny';
18              
19              
20              
21             1;
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Banal::Role::Fallback - A Moo/Moose compatible incarnation of C
30              
31             =head1 VERSION
32              
33             version 0.001
34              
35             =head1 DESCRIPTION
36              
37             =for stopwords TABULO
38             =for stopwords GitHub DZIL
39              
40             This is Moo/Moose compatible incarnation of its tiny cousin C.
41             For further info, please refer to that module.
42              
43             =head1 SEE ALSO
44              
45             =over 4
46              
47             =item *
48              
49             L
50              
51             =back
52              
53             =head1 SUPPORT
54              
55             Bugs may be submitted through L
56             (or L).
57              
58             =head1 AUTHOR
59              
60             Ayhan ULUSOY
61              
62             =head1 COPYRIGHT AND LICENSE
63              
64             This software is copyright (c) 2018 by Ayhan ULUSOY.
65              
66             This is free software; you can redistribute it and/or modify it under
67             the same terms as the Perl 5 programming language system itself.
68              
69             =cut
70              
71             __END__