File Coverage

blib/lib/WWW/Google/Contacts/Type/Gender.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package WWW::Google::Contacts::Type::Gender;
2             {
3             $WWW::Google::Contacts::Type::Gender::VERSION = '0.39';
4             }
5              
6 19     19   118 use Moose;
  19         41  
  19         159  
7 19     19   129196 use MooseX::Types::Moose qw( Str );
  19         49  
  19         237  
8 19     19   100156 use WWW::Google::Contacts::Meta::Attribute::Trait::XmlField;
  19         46  
  19         1331  
9              
10             extends 'WWW::Google::Contacts::Type::Base';
11              
12             has value => (
13             isa => Str,
14             is => 'rw',
15             traits => ['XmlField'],
16             xml_key => 'value',
17             predicate => 'has_value',
18             required => 1,
19             );
20              
21 19     19   105 no Moose;
  19         43  
  19         118  
22             __PACKAGE__->meta->make_immutable;
23             1;
24             __END__