File Coverage

blib/lib/App/DuckPAN/HasApp.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package App::DuckPAN::HasApp;
2             our $AUTHORITY = 'cpan:DDG';
3             # ABSTRACT: Simple role for classes which carry an object of App::DuckPAN
4             $App::DuckPAN::HasApp::VERSION = '1018';
5 2     2   982 use Moo::Role;
  2         6  
  2         13  
6              
7             has app => (
8             is => 'rw',
9             required => 1,
10             );
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =head1 NAME
19              
20             App::DuckPAN::HasApp - Simple role for classes which carry an object of App::DuckPAN
21              
22             =head1 VERSION
23              
24             version 1018
25              
26             =head1 AUTHOR
27              
28             DuckDuckGo <open@duckduckgo.com>, Zach Thompson <zach@duckduckgo.com>, Zaahir Moolla <moollaza@duckduckgo.com>, Torsten Raudssus <torsten@raudss.us> L<https://raudss.us/>
29              
30             =head1 COPYRIGHT AND LICENSE
31              
32             This software is Copyright (c) 2013 by DuckDuckGo, Inc. L<https://duckduckgo.com/>.
33              
34             This is free software, licensed under:
35              
36             The Apache License, Version 2.0, January 2004
37              
38             =cut