File Coverage

lib/Catan/Map/Tile/HarborLumber.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 1 1 100.0
total 31 31 100.0


line stmt bran cond sub pod time code
1             package Catan::Map::Tile::HarborLumber;
2             $Catan::Map::Tile::HarborLumber::VERSION = '0.03';
3 3     3   15 use strict;
  3     1   5  
  3         72  
  1         700  
  1         2  
  1         20  
4 3     3   14 use warnings;
  3     1   5  
  3         74  
  1         4  
  1         3  
  1         30  
5 3     3   12 use parent 'Catan::Map::Tile';
  3     1   5  
  3         20  
  1         5  
  1         2  
  1         5  
6              
7             sub new
8             {
9 6     6 1 14 my ($class, $q, $r, $number) = @_;
10 6         26 my $self = $class->SUPER::new($q, $r, $number);
11 6         18 $self->{name} = 'Lumber Harbor';
12 6         22 $self->{code} = 'HRL';
13 6         16 return $self;
14             }
15             1;
16              
17             __END__