File Coverage

lib/Data/Pokemon/Go/Relation.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Data::Pokemon::Go::Relation;
2 7     7   70579 use 5.008001;
  7         35  
3              
4 7     7   564 use Moose;
  7         462963  
  7         62  
5             extends 'Data::Pokemon::Go::Relation::Dual';
6              
7             sub BUILD {
8 4442     4442 0 5905 my $self = shift;
9 4442         115770 return Data::Pokemon::Go::Relation::Dual->new(@_);
10             }
11              
12             __PACKAGE__->meta->make_immutable;
13 7     7   50588 no Moose;
  7         30  
  7         36  
14              
15             1;
16             __END__
17              
18             =encoding utf-8
19              
20             =head1 NAME
21              
22             Data::Pokemon::Go::Relation - It's new $module
23              
24             =head1 SYNOPSIS
25              
26             use Data::Pokemon::Go::Relation;
27              
28             =head1 DESCRIPTION
29              
30             Data::Pokemon::Go::Relation is ...
31              
32             =head1 LICENSE
33              
34             Copyright (C) Yuki Yoshida.
35              
36             This library is free software; you can redistribute it and/or modify
37             it under the same terms as Perl itself.
38              
39             =head1 AUTHOR
40              
41             Yuki Yoshida E<lt>worthmine@gmail.comE<gt>
42              
43             =cut