File Coverage

blib/lib/Net/Async/Github/Plan.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 7 42.8
pod 4 4 100.0
total 16 24 66.6


line stmt bran cond sub pod time code
1             package Net::Async::Github::Plan;
2              
3 5     5   264134 use strict;
  5         11  
  5         250  
4 5     5   32 use warnings;
  5         12  
  5         590  
5              
6             our $VERSION = '0.013'; # VERSION
7              
8 5     5   48 use parent qw(Net::Async::Github::Common);
  5         10  
  5         43  
9              
10             =head1 NAME
11              
12             Net::Async::Github::Plan
13              
14             =head1 DESCRIPTION
15              
16             Autogenerated module.
17              
18             =cut
19              
20             =head1 METHODS
21              
22             =cut
23              
24             =head2 name
25              
26             Provides an accessor for C.
27              
28             =cut
29              
30             sub name {
31             shift->{name}
32 0     0 1   }
33              
34             =head2 space
35              
36             Provides an accessor for C.
37              
38             =cut
39              
40             sub space {
41             shift->{space}
42 0     0 1   }
43              
44             =head2 private_repos
45              
46             Provides an accessor for C.
47              
48             =cut
49              
50             sub private_repos {
51             shift->{private_repos}
52 0     0 1   }
53              
54             =head2 collaborators
55              
56             Provides an accessor for C.
57              
58             =cut
59              
60             sub collaborators {
61             shift->{collaborators}
62 0     0 1   }
63              
64             1;
65