File Coverage

blib/lib/Test/Shared/Fixture/Wikibase/Datatype/Statement/Wikidata/GrammaticalGender/Masculine.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Test::Shared::Fixture::Wikibase::Datatype::Statement::Wikidata::GrammaticalGender::Masculine;
2              
3 19     19   347795 use base qw(Wikibase::Datatype::Statement);
  19         81  
  19         3004  
4 19     19   134 use strict;
  19         79  
  19         385  
5 19     19   476 use warnings;
  19         49  
  19         493  
6              
7 19     19   9088 use Test::Shared::Fixture::Wikibase::Datatype::Reference::Wikidata::VIAF;
  19         68  
  19         637  
8 19     19   9639 use Test::Shared::Fixture::Wikibase::Datatype::Snak::Wikidata::GrammaticalGender::Masculine;
  19         64  
  19         1955  
9              
10             our $VERSION = 0.29;
11              
12             sub new {
13 15     15 1 199 my $class = shift;
14              
15 15         159 my @params = (
16             'snak' => Test::Shared::Fixture::Wikibase::Datatype::Snak::Wikidata::GrammaticalGender::Masculine->new,
17             'references' => [
18             Test::Shared::Fixture::Wikibase::Datatype::Reference::Wikidata::VIAF->new,
19             ],
20             );
21              
22 15         150 my $self = $class->SUPER::new(@params);
23              
24 15         266 return $self;
25             }
26              
27             1;
28              
29             __END__