File Coverage

blib/lib/App/AquariumHive/Role.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package App::AquariumHive::Role;
2             BEGIN {
3 1     1   1097 $App::AquariumHive::Role::AUTHORITY = 'cpan:GETTY';
4             }
5             $App::AquariumHive::Role::VERSION = '0.003';
6 1     1   6 use Moo::Role;
  1         1  
  1         6  
7             with 'App::AquariumHive::LogRole';
8              
9             has app => (
10             is => 'ro',
11             required => 1,
12             handles => [qw(
13             add_tile
14             web_mount
15             on_data
16             on_socketio
17             send
18             run_cmd
19             sensor_rows
20             no_pwm
21             no_power
22             )],
23             );
24              
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =head1 NAME
32              
33             App::AquariumHive::Role
34              
35             =head1 VERSION
36              
37             version 0.003
38              
39             =head1 AUTHOR
40              
41             Torsten Raudssus <torsten@raudss.us>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2014 by Torsten Raudssus.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut