File: | lib/WWW/Google/Contacts/GroupList.pm |
Coverage: | 66.7% |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package WWW::Google::Contacts::GroupList; | ||||||
2 | |||||||
3 | 11 11 11 | 84 40 92 | use Moose; | ||||
4 | 11 11 11 | 131 38 83 | use WWW::Google::Contacts::Group; | ||||
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/groups/default' } | ||||
11 | 0 | 0 | sub element_class { 'WWW::Google::Contacts::Group' } | ||||
12 | |||||||
13 | 11 11 11 | 103 40 84 | no Moose; | ||||
14 | __PACKAGE__->meta->make_immutable; | ||||||
15 | 1; |