File Coverage

blib/lib/Search/Elasticsearch/Client/Async/Simple/Direct/Snapshot.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::Snapshot;
2              
3 1     1   23629 use Moo;
  1         15277  
  1         6  
4              
5 1     1   2238 use namespace::clean;
  1         18737  
  1         8  
6              
7             extends 'Search::Elasticsearch::Client::Direct::Snapshot';
8             with 'Search::Elasticsearch::Role::API';
9             with 'Search::Elasticsearch::Role::Client::Async::Simple::Direct';
10              
11              
12             __PACKAGE__->_install_api('snapshot');
13              
14              
15             1;
16              
17              
18             __END__