File Coverage

lib/Catan/Map/Tile/Desert.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::Desert;
2             $Catan::Map::Tile::Desert::VERSION = '0.02';
3 3     3   12 use strict;
  3     1   6  
  3         69  
  1         1045  
  1         3  
  1         23  
4 3     3   14 use warnings;
  3     1   3  
  3         72  
  1         5  
  1         2  
  1         26  
5 3     3   15 use parent 'Catan::Map::Tile';
  3     1   3  
  3         22  
  1         4  
  1         2  
  1         5  
6              
7             sub new
8             {
9 4     4 1 10 my ($class, $q, $r, $number) = @_;
10 4         17 my $self = $class->SUPER::new($q, $r, $number);
11 4         8 $self->{name} = 'Desert';
12 4         8 $self->{code} = 'D';
13 4         9 return $self;
14             }
15             1;
16              
17             __END__