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   485 $App::AquariumHive::Role::AUTHORITY = 'cpan:GETTY';
4             }
5             $App::AquariumHive::Role::VERSION = '0.002';
6 1     1   5 use Moo::Role;
  1         2  
  1         5  
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             )],
20             );
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =head1 NAME
29              
30             App::AquariumHive::Role
31              
32             =head1 VERSION
33              
34             version 0.002
35              
36             =head1 AUTHOR
37              
38             Torsten Raudssus <torsten@raudss.us>
39              
40             =head1 COPYRIGHT AND LICENSE
41              
42             This software is copyright (c) 2014 by Torsten Raudssus.
43              
44             This is free software; you can redistribute it and/or modify it under
45             the same terms as the Perl 5 programming language system itself.
46              
47             =cut