File Coverage

blib/lib/Fey/Role/Selectable.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Fey::Role::Selectable;
2              
3 28     28   16662 use strict;
  28         90  
  28         1027  
4 28     28   125 use warnings;
  28         40  
  28         766  
5 28     28   120 use namespace::autoclean;
  28         40  
  28         160  
6              
7             our $VERSION = '0.42';
8              
9 28     28   2081 use Moose::Role;
  28         43  
  28         176  
10              
11 3     3 1 9 sub is_selectable {1}
12              
13             1;
14              
15             # ABSTRACT: A role for things that can go in a SELECT clause
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             Fey::Role::Selectable - A role for things that can go in a SELECT clause
24              
25             =head1 VERSION
26              
27             version 0.42
28              
29             =head1 SYNOPSIS
30              
31             use Moose 0.90;
32              
33             with 'Fey::Role::Selectable';
34              
35             =head1 DESCRIPTION
36              
37             Classes which do this role represent an object which can go in a
38             C<SELECT> clause.
39              
40             =head1 METHODS
41              
42             This role provides the following methods:
43              
44             =head2 $object->is_selectable()
45              
46             Returns true.
47              
48             =head1 BUGS
49              
50             See L<Fey> for details on how to report bugs.
51              
52             =head1 AUTHOR
53              
54             Dave Rolsky <autarch@urth.org>
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is Copyright (c) 2011 - 2015 by Dave Rolsky.
59              
60             This is free software, licensed under:
61              
62             The Artistic License 2.0 (GPL Compatible)
63              
64             =cut