File Coverage

blib/lib/App/DuckPAN/Option/Global.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::Option::Global;
2             our $AUTHORITY = 'cpan:DDG';
3             # ABSTRACT: Commands that can be run from anywhere.
4             $App::DuckPAN::Option::Global::VERSION = '1019';
5 5     5   2769 use Moo::Role;
  5         12  
  5         38  
6              
7             with qw( App::DuckPAN::Cmd );
8              
9             around initialize => sub { return; };
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =head1 NAME
18              
19             App::DuckPAN::Option::Global - Commands that can be run from anywhere.
20              
21             =head1 VERSION
22              
23             version 1019
24              
25             =head1 AUTHOR
26              
27             DuckDuckGo <open@duckduckgo.com>, Zach Thompson <zach@duckduckgo.com>, Zaahir Moolla <moollaza@duckduckgo.com>, Torsten Raudssus <torsten@raudss.us> L<https://raudss.us/>
28              
29             =head1 COPYRIGHT AND LICENSE
30              
31             This software is Copyright (c) 2013 by DuckDuckGo, Inc. L<https://duckduckgo.com/>.
32              
33             This is free software, licensed under:
34              
35             The Apache License, Version 2.0, January 2004
36              
37             =cut