File Coverage

File:lib/WWW/Google/Contacts/ContactList.pm
Coverage:66.7%

linestmtbrancondsubpodtimecode
1package 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
6extends 'WWW::Google::Contacts::Base';
7
8with '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;
151;