| blib/lib/WWW/Coderwall/User.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 3 | 3 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 4 | 4 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package WWW::Coderwall::User; | ||||||
| 2 | |||||||
| 3 | 2 | 2 | 2952 | use Moo; | |||
| 2 | 37510 | ||||||
| 2 | 12 | ||||||
| 4 | |||||||
| 5 | |||||||
| 6 | has username => ( | ||||||
| 7 | is => 'ro', | ||||||
| 8 | ); | ||||||
| 9 | |||||||
| 10 | |||||||
| 11 | has name => ( | ||||||
| 12 | is => 'ro', | ||||||
| 13 | ); | ||||||
| 14 | |||||||
| 15 | |||||||
| 16 | has location => ( | ||||||
| 17 | is => 'ro', | ||||||
| 18 | ); | ||||||
| 19 | |||||||
| 20 | |||||||
| 21 | has endorsements => ( | ||||||
| 22 | is => 'ro', | ||||||
| 23 | ); | ||||||
| 24 | |||||||
| 25 | |||||||
| 26 | has team => ( | ||||||
| 27 | is => 'ro', | ||||||
| 28 | ); | ||||||
| 29 | |||||||
| 30 | |||||||
| 31 | has accounts => ( | ||||||
| 32 | is => 'ro', | ||||||
| 33 | ); | ||||||
| 34 | |||||||
| 35 | |||||||
| 36 | has badges => ( | ||||||
| 37 | is => 'ro', | ||||||
| 38 | ); | ||||||
| 39 | |||||||
| 40 | 1; | ||||||
| 41 | |||||||
| 42 | __END__ |