File Coverage

blib/lib/CanvasCloud/API/Account/Term.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 12 12 100.0


line stmt bran cond sub pod time code
1             package CanvasCloud::API::Account::Term;
2             $CanvasCloud::API::Account::Term::VERSION = '0.007';
3             # ABSTRACT: extends L<CanvasCloud::API::Account>
4              
5 1     1   1241 use Moose;
  1         464210  
  1         7  
6 1     1   8169 use namespace::autoclean;
  1         8095  
  1         5  
7              
8             extends 'CanvasCloud::API::Account';
9              
10              
11             augment 'uri' => sub { return '/terms'; };
12              
13              
14             sub list {
15 1     1 1 3 my $self = shift;
16 1         10 return $self->send( $self->request( 'GET', $self->uri ) );
17             }
18              
19             __PACKAGE__->meta->make_immutable;
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             CanvasCloud::API::Account::Term - extends L<CanvasCloud::API::Account>
32              
33             =head1 VERSION
34              
35             version 0.007
36              
37             =head1 ATTRIBUTES
38              
39             =head2 uri
40              
41             augments base uri to append '/terms'
42              
43             =head1 METHODS
44              
45             =head2 list
46              
47             return data object response from GET ->uri
48              
49             =head1 AUTHOR
50              
51             Ted Katseres
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2019 by Ted Katseres.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut