File Coverage

blib/lib/Fey/Role/TableLike.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Fey::Role::TableLike;
2              
3 26     26   15185 use strict;
  26         45  
  26         1004  
4 26     26   121 use warnings;
  26         38  
  26         709  
5 26     26   132 use namespace::autoclean;
  26         39  
  26         184  
6              
7             our $VERSION = '0.42';
8              
9 26     26   2020 use Moose::Role;
  26         43  
  26         203  
10              
11             with 'Fey::Role::Joinable';
12              
13             requires 'sql_for_select_clause';
14              
15             1;
16              
17             # ABSTRACT: A role for things that are like a table
18              
19             __END__
20              
21             =pod
22              
23             =head1 NAME
24              
25             Fey::Role::TableLike - A role for things that are like a table
26              
27             =head1 VERSION
28              
29             version 0.42
30              
31             =head1 SYNOPSIS
32              
33             use Moose 0.90;
34              
35             with 'Fey::Role::TableLike';
36              
37             =head1 DESCRIPTION
38              
39             This role has no methods or attributes of its own. It does consume the
40             L<Fey::Role::Joinable> role.
41              
42             =head1 BUGS
43              
44             See L<Fey> for details on how to report bugs.
45              
46             =head1 AUTHOR
47              
48             Dave Rolsky <autarch@urth.org>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is Copyright (c) 2011 - 2015 by Dave Rolsky.
53              
54             This is free software, licensed under:
55              
56             The Artistic License 2.0 (GPL Compatible)
57              
58             =cut