File Coverage

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

linestmtbrancondsubpodtimecode
1package WWW::Google::Contacts::Type::Language;
2
3
12
12
12
91
36
96
use Moose;
4
12
12
12
141
40
105
use MooseX::Types::Moose qw( Str );
5
12
12
12
135
37
95
use WWW::Google::Contacts::Meta::Attribute::Trait::XmlField;
6
7extends 'WWW::Google::Contacts::Type::Base';
8
9has code => (
10    isa => Str,
11    is => 'rw',
12    traits => [ 'XmlField' ],
13    xml_key => 'code',
14    predicate => 'has_code',
15    required => 1,
16);
17
18
12
12
12
114
37
90
no Moose;
19__PACKAGE__->meta->make_immutable;
201;