File Coverage

blib/lib/Fey/Role/Orderable.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::Orderable;
2              
3 28     28   15125 use strict;
  28         45  
  28         1030  
4 28     28   137 use warnings;
  28         40  
  28         802  
5 28     28   146 use namespace::autoclean;
  28         45  
  28         1074  
6              
7             our $VERSION = '0.42';
8              
9 28     28   2099 use Moose::Role;
  28         46  
  28         163  
10              
11 3     3 1 20 sub is_orderable {1}
12              
13             1;
14              
15             # ABSTRACT: A role for things that can be part of a ORDER BY clause
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             Fey::Role::Orderable - A role for things that can be part of a ORDER BY 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::Orderable';
34              
35             =head1 DESCRIPTION
36              
37             Classes which do this role represent an object which can be part of a
38             C<ORDER BY> clause.
39              
40             =head1 METHODS
41              
42             This role provides the following methods:
43              
44             =head2 $object->is_orderable()
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