File Coverage

blib/lib/Banal/Role/Fallback/Moo.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


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