line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package GitLab::API::v4::Mock; |
2
|
|
|
|
|
|
|
our $VERSION = '0.26'; |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=encoding utf8 |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
GitLab::API::v4::Mock - Mock API object for testing. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 SYNOPSIS |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
use GitLab::API::v4::Mock; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
my $api = GitLab::API::v4::Mock->new(); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This module is a subclass of L. It modifies |
19
|
|
|
|
|
|
|
it to mock the REST client via L. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This module is meant to be used for writing unit tests. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=cut |
24
|
|
|
|
|
|
|
|
25
|
1
|
|
|
1
|
|
229016
|
use GitLab::API::v4::Mock::RESTClient; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
37
|
|
26
|
|
|
|
|
|
|
|
27
|
1
|
|
|
1
|
|
7
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
28
|
1
|
|
|
1
|
|
309
|
use strictures 2; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
50
|
|
29
|
1
|
|
|
1
|
|
169
|
use namespace::clean; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
extends 'GitLab::API::v4'; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 url |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This attribute is altered from L to default |
38
|
|
|
|
|
|
|
to C and to not be required. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
has '+url' => ( |
43
|
|
|
|
|
|
|
required => 0, |
44
|
|
|
|
|
|
|
default => 'https://example.com/api/v4', |
45
|
|
|
|
|
|
|
); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 rest_client_class |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This attribute is altered from L |
50
|
|
|
|
|
|
|
to default to L. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
sub _build_rest_client_class { |
55
|
2
|
|
|
2
|
|
45
|
return 'GitLab::API::v4::Mock::RESTClient'; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |
59
|
|
|
|
|
|
|
__END__ |