File Coverage

lib/Google/RestApi/SheetsApi4/Range/All.pm
Criterion Covered Total %
statement 6 12 50.0
branch n/a
condition n/a
subroutine 2 5 40.0
pod 3 3 100.0
total 11 20 55.0


line stmt bran cond sub pod time code
1              
2             # TODO: this class has not been fully tested. use at your own risk.
3              
4             our $VERSION = '1.0.2';
5              
6             use Google::RestApi::Setup;
7 1     1   533  
  1         2  
  1         7  
8             use parent 'Google::RestApi::SheetsApi4::Range';
9 1     1   18866  
  1         3  
  1         4  
10             my $class = shift;
11             state $check = compile_named(
12 0     0 1   worksheet => HasMethods[qw(api worksheet_name)],
13 0           );
14             my $self = $check->(@_);
15             return bless $self, $class;
16 0           }
17 0            
18              
19              
20 0     0 1   1;
21              
22 0     0 1    
23             =head1 NAME
24              
25             Google::RestApi::SheetsApi4::Range::All - Represents an the Range of an entire Worksheet.
26              
27             =head1 DESCRIPTION
28              
29             A Range::All object modifies the behaviour of the parent Range object
30             to return the entire worksheet as the range.
31              
32             THIS IS CURRENTLY JUST A PLACEHOLDER FOR THE OBJECT AND HAS NOT BEEN
33             TESTED AS YET.
34              
35             See the description and synopsis at Google::RestApi::SheetsApi4.
36              
37             =head1 AUTHORS
38              
39             =over
40              
41             =item
42              
43             Robin Murray mvsjes@cpan.org
44              
45             =back
46              
47             =head1 COPYRIGHT
48              
49             Copyright (c) 2021, Robin Murray. All rights reserved.
50              
51             This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.