File Coverage

blib/lib/Moose/Autobox/Ref.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 Moose::Autobox::Ref;
2             # ABSTRACT: the Ref role
3 14     14   7845 use Moose::Role 'with';
  14         26  
  14         93  
4 14     14   44231 use namespace::autoclean;
  14         25  
  14         103  
5              
6             our $VERSION = '0.16';
7              
8             with 'Moose::Autobox::Defined';
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =encoding UTF-8
17              
18             =head1 NAME
19              
20             Moose::Autobox::Ref - the Ref role
21              
22             =head1 VERSION
23              
24             version 0.16
25              
26             =head1 DESCRIPTION
27              
28             This is a role to describes a reference value.
29              
30             =head1 METHODS
31              
32             =over 4
33              
34             =item C<meta>
35              
36             =back
37              
38             =head1 SUPPORT
39              
40             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Moose-Autobox>
41             (or L<bug-Moose-Autobox@rt.cpan.org|mailto:bug-Moose-Autobox@rt.cpan.org>).
42              
43             There is also a mailing list available for users of this distribution, at
44             L<http://lists.perl.org/list/moose.html>.
45              
46             There is also an irc channel available for users of this distribution, at
47             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
48              
49             =head1 AUTHOR
50              
51             Stevan Little <stevan.little@iinteractive.com>
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2006 by Infinity Interactive, Inc.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut