blib/lib/Net/Payjp/Account.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 11 | 81.8 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 4 | 75.0 |
pod | 1 | 1 | 100.0 |
total | 13 | 16 | 81.2 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Net::Payjp::Account; | ||||||
2 | |||||||
3 | 9 | 9 | 55 | use strict; | |||
9 | 23 | ||||||
9 | 276 | ||||||
4 | 9 | 9 | 53 | use warnings; | |||
9 | 21 | ||||||
9 | 328 | ||||||
5 | |||||||
6 | 9 | 9 | 49 | use base 'Net::Payjp::Resource'; | |||
9 | 18 | ||||||
9 | 5331 | ||||||
7 | |||||||
8 | sub retrieve{ | ||||||
9 | 0 | 0 | 1 | my $self = shift; | |||
10 | |||||||
11 | 0 | $self->_request(method => 'GET', url => $self->_class_url); | |||||
12 | } | ||||||
13 | |||||||
14 | 1; |