File Coverage

blib/lib/Paper/Specs/Avery/5883.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Paper::Specs::Avery::5883;
2 1     1   1204 use strict;
  1         2  
  1         36  
3 1     1   5 use base qw(Paper::Specs::base::label Paper::Specs::Avery);
  1         2  
  1         160  
4              
5             sub specs {
6              
7             return {
8              
9 0     0 0   code => '5883',
10             description => 'Insertable Name Badges - 2 1/4" x 3 1/2"',
11              
12             sheet_width => 8.5,
13             sheet_height => 11.0313,
14              
15             label_width => 3.1875,
16             label_height => 1.8438,
17              
18             label_rows => 4,
19             label_cols => 2,
20              
21             margin_left => 0.875,
22             margin_top => 1.3125,
23             margin_right => 0.9375,
24             margin_bottom => 1.3125,
25              
26             units => 'in',
27              
28             };
29              
30             }
31              
32             1;
33