blib/lib/Net/Payjp/Account.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 11 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | 1 | 1 | 100.0 |
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Net::Payjp::Account; | ||||||
2 | |||||||
3 | 11 | 11 | 104 | use strict; | |||
11 | 25 | ||||||
11 | 350 | ||||||
4 | 11 | 11 | 55 | use warnings; | |||
11 | 37 | ||||||
11 | 309 | ||||||
5 | |||||||
6 | 11 | 11 | 61 | use base 'Net::Payjp'; | |||
11 | 32 | ||||||
11 | 1544 | ||||||
7 | |||||||
8 | sub retrieve{ | ||||||
9 | 1 | 1 | 1 | 7 | my $self = shift; | ||
10 | |||||||
11 | 1 | 7 | $self->_request(method => 'GET', url => $self->_class_url); | ||||
12 | } | ||||||
13 | |||||||
14 | 1; |