File Coverage

blib/lib/MongoDB/UnacknowledgedResult.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             # Copyright 2015 - present MongoDB, Inc.
2             #
3             # Licensed under the Apache License, Version 2.0 (the "License");
4             # you may not use this file except in compliance with the License.
5             # You may obtain a copy of the License at
6             #
7             # http://www.apache.org/licenses/LICENSE-2.0
8             #
9             # Unless required by applicable law or agreed to in writing, software
10             # distributed under the License is distributed on an "AS IS" BASIS,
11             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12             # See the License for the specific language governing permissions and
13             # limitations under the License.
14              
15 58     58   395 use strict;
  58         124  
  58         1739  
16 58     58   331 use warnings;
  58         159  
  58         2048  
17             package MongoDB::UnacknowledgedResult;
18              
19             # ABSTRACT: MongoDB unacknowledged result object
20              
21 58     58   328 use version;
  58         144  
  58         366  
22             our $VERSION = 'v2.2.0';
23              
24 58     58   4710 use Moo;
  58         165  
  58         393  
25 58     58   19918 use MongoDB::_Constants;
  58         181  
  58         6993  
26 58     58   465 use namespace::clean;
  58         165  
  58         449  
27              
28             with $_ for qw(
29             MongoDB::Role::_PrivateConstructor
30             MongoDB::Role::_WriteResult
31             );
32              
33             #pod =method acknowledged
34             #pod
35             #pod Indicates whether this write result was acknowledged. Always false for
36             #pod this class.
37             #pod
38             #pod =cut
39              
40             sub acknowledged() { 0 };
41              
42             1;
43              
44             __END__