File Coverage

blib/lib/M3/ServerView/FindJobEntry.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package M3::ServerView::FindJobEntry;
2              
3 4     4   21 use strict;
  4         8  
  4         149  
4 4     4   19 use warnings;
  4         13  
  4         108  
5              
6 4     4   23 use base qw(M3::ServerView::Entry);
  4         7  
  4         341  
7              
8             # Build accessors
9 4         24 use Object::Tiny qw(
10             no
11             type
12             name
13             id
14             user
15             status
16             change
17 4     4   21 );
  4         7  
18              
19             1;
20             __END__