File Coverage

File:lib/WWW/Google/Contacts/Type/Hobby.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1package WWW::Google::Contacts::Type::Hobby;
2
3
12
12
12
88
40
97
use Moose;
4
12
12
12
139
39
105
use MooseX::Types::Moose qw( Str );
5
12
12
12
125
38
101
use WWW::Google::Contacts::Meta::Attribute::Trait::XmlField;
6
7extends 'WWW::Google::Contacts::Type::Base';
8
9has value => (
10    isa => Str,
11    is => 'rw',
12    traits => [ 'XmlField' ],
13    xml_key => 'content',
14    predicate => 'has_value',
15    required => 1,
16);
17
18
12
12
12
116
38
89
no Moose;
19__PACKAGE__->meta->make_immutable;
201;