File Coverage

blib/lib/Search/Elasticsearch/Client/Async/Simple/Direct/Indices.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Search::Elasticsearch::Client::Async::Simple::Direct::Indices;
2              
3 1     1   25893 use Moo;
  1         19181  
  1         6  
4              
5 1     1   3699 use namespace::clean;
  1         21671  
  1         8  
6              
7             extends 'Search::Elasticsearch::Client::Direct::Indices';
8             with 'Search::Elasticsearch::Role::API';
9             with 'Search::Elasticsearch::Role::Client::Async::Simple::Direct';
10              
11              
12             __PACKAGE__->_install_api('indices');
13              
14              
15             1;
16              
17              
18             __END__