File Coverage

blib/lib/Spreadsheet/Gnumeric/StyleRegion.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 21 21 100.0


line stmt bran cond sub pod time code
1             # -*- mode: perl; -*-
2             #
3             # Class for keeping track of Gnumeric style regions.
4             #
5             # Documentation below "__END__".
6             #
7             # [created. -- rgr, 6-Feb-23.]
8             #
9              
10             package Spreadsheet::Gnumeric::StyleRegion;
11              
12 3     3   50 use 5.010;
  3         10  
13              
14 3     3   14 use strict;
  3         5  
  3         49  
15 3     3   11 use warnings;
  3         6  
  3         126  
16              
17             our $VERSION = '0.2';
18              
19 3     3   1056 use parent qw(Spreadsheet::Gnumeric::Base);
  3         739  
  3         16  
20              
21             # define instance accessors.
22             BEGIN {
23 3     3   120 no strict 'refs';
  3         5  
  3         79  
24 3     3   21 Spreadsheet::Gnumeric::StyleRegion->define_instance_accessors
25             (qw(start_col start_row end_col end_row style_attributes));
26             }
27              
28             1;
29              
30             __END__