File Coverage

blib/lib/Net/GitHub/V3/OAuth.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::GitHub::V3::OAuth;
2              
3 1     1   7 use Moo;
  1         2  
  1         6  
4              
5             our $VERSION = '1.05';
6             our $AUTHORITY = 'cpan:FAYLAND';
7              
8 1     1   369 use URI::Escape;
  1         3  
  1         151  
9              
10             with 'Net::GitHub::V3::Query';
11              
12             ## build methods on fly
13             my %__methods = (
14              
15             authorizations => { url => "/authorizations" },
16              
17             get_authorization => { url => "/authorizations/%s" },
18             authorization => { url => "/authorizations/%s" },
19              
20             create_authorization => { url => "/authorizations", method => "POST", args => 1 },
21             update_authorization => { url => "/authorizations/%s", method => "PATCH", args => 1 },
22             delete_authorization => { url => "/authorizations/%s", method => "DELETE", check_status => 204 },
23              
24             );
25             __build_methods(__PACKAGE__, %__methods);
26              
27 1     1   7 no Moo;
  1         1  
  1         4  
28              
29             1;
30             __END__