File Coverage

blib/lib/WebService/Backlog/Priority.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package WebService::Backlog::Priority;
2              
3             # $Id: Priority.pm 560 2007-11-05 07:15:10Z yamamoto $
4              
5 2     2   10 use strict;
  2         3  
  2         58  
6 2     2   11 use warnings;
  2         2  
  2         56  
7              
8 2     2   10 use base qw(Class::Accessor::Fast);
  2         4  
  2         145  
9             __PACKAGE__->mk_accessors(qw/id name/);
10              
11             1;
12             __END__