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