File: | lib/WWW/Google/Contacts/ContactList.pm |
Coverage: | 66.7% |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package WWW::Google::Contacts::ContactList; | ||||||
2 | |||||||
3 | 11 11 11 | 87 33 125 | use Moose; | ||||
4 | 11 11 11 | 125 37 91 | use WWW::Google::Contacts::Contact; | ||||
5 | |||||||
6 | extends 'WWW::Google::Contacts::Base'; | ||||||
7 | |||||||
8 | with 'WWW::Google::Contacts::Roles::List'; | ||||||
9 | |||||||
10 | 0 | 0 | sub baseurl { 'http://www.google.com/m8/feeds/contacts/default' } | ||||
11 | 0 | 0 | sub element_class { 'WWW::Google::Contacts::Contact' } | ||||
12 | |||||||
13 | 11 11 11 | 101 36 80 | no Moose; | ||||
14 | __PACKAGE__->meta->make_immutable; | ||||||
15 | 1; |