File Coverage

blib/lib/GitHub/API/Repo.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 6 66.6
pod 2 2 100.0
total 18 22 81.8


line stmt bran cond sub pod time code
1             #
2             # This file is part of GitHub-API
3             #
4             # This software is Copyright (c) 2013 by Chris Weyl.
5             #
6             # This is free software, licensed under:
7             #
8             # The GNU Lesser General Public License, Version 2.1, February 1999
9             #
10             package GitHub::API::Repo;
11             {
12             $GitHub::API::Repo::VERSION = '0.000000_03';
13             }
14              
15             # ABSTRACT: A repository
16              
17 1     1   596 use common::sense;
  1         2  
  1         5  
18 1     1   36 use parent 'GitHub::API::Base';
  1         1  
  1         7  
19              
20 1     1   48 use aliased 'GitHub::API::Repo::Hooks';
  1         2  
  1         5  
21 1     1   95 use aliased 'GitHub::API::Repo::Keys';
  1         2  
  1         6  
22              
23              
24 0     0 1   sub hooks { shift->_next_append(Hooks, '/hooks') }
25 0     0 1   sub keys { shift->_next_append(Keys, '/keys' ) }
26              
27             !!42;
28              
29             __END__