File Coverage

blib/lib/OpenSearch/Security/GetRole.pm
Criterion Covered Total %
statement 18 22 81.8
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 1 0.0
total 24 30 80.0


line stmt bran cond sub pod time code
1             package OpenSearch::Security::GetRole;
2 4     4   27 use strict;
  4         10  
  4         161  
3 4     4   20 use warnings;
  4         10  
  4         290  
4 4     4   24 use Moo;
  4         11  
  4         31  
5 4     4   2019 use Types::Standard qw(InstanceOf);
  4         644  
  4         709  
6 4     4   10481 use feature qw(signatures);
  4         14  
  4         592  
7 4     4   67 no warnings qw(experimental::signatures);
  4         7  
  4         669  
8              
9             with 'OpenSearch::Parameters::Security::GetRole';
10              
11             has '_base' => (
12             is => 'rw',
13             isa => InstanceOf ['OpenSearch::Base'],
14             required => 1,
15             );
16              
17 0     0 0   sub execute($self) {
  0            
  0            
18 0           my $res = $self->_base->_get( $self, [ '_plugins', '_security', 'api', 'roles', $self->role ] );
19             }
20              
21             1;