File Coverage

blib/lib/Moose/Autobox/Defined.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Moose::Autobox::Defined;
2             # ABSTRACT: the Defined role
3 14     14   6604 use Moose::Role 'with';
  14         19  
  14         77  
4 14     14   38206 use namespace::autoclean;
  14         23  
  14         85  
5              
6             our $VERSION = '0.16';
7              
8             with 'Moose::Autobox::Item';
9              
10 6     6 1 949 sub defined { 1 }
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Moose::Autobox::Defined - the Defined role
23              
24             =head1 VERSION
25              
26             version 0.16
27              
28             =head1 SYNOPSIS
29              
30             use Moose::Autobox;
31              
32             my $x;
33             $x->defined; # false
34              
35             $x = 10;
36             $x->defined; # true
37              
38             =head1 DESCRIPTION
39              
40             This is a role to describes a defined value.
41              
42             =head1 METHODS
43              
44             =over 4
45              
46             =item C<defined>
47              
48             =back
49              
50             =over 4
51              
52             =item C<meta>
53              
54             =back
55              
56             =head1 SUPPORT
57              
58             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Moose-Autobox>
59             (or L<bug-Moose-Autobox@rt.cpan.org|mailto:bug-Moose-Autobox@rt.cpan.org>).
60              
61             There is also a mailing list available for users of this distribution, at
62             L<http://lists.perl.org/list/moose.html>.
63              
64             There is also an irc channel available for users of this distribution, at
65             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
66              
67             =head1 AUTHOR
68              
69             Stevan Little <stevan.little@iinteractive.com>
70              
71             =head1 COPYRIGHT AND LICENSE
72              
73             This software is copyright (c) 2006 by Infinity Interactive, Inc.
74              
75             This is free software; you can redistribute it and/or modify it under
76             the same terms as the Perl 5 programming language system itself.
77              
78             =cut