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 59     59   407 use strict;
  59         143  
  59         1662  
16 59     59   320 use warnings;
  59         138  
  59         2087  
17             package MongoDB::UnacknowledgedResult;
18              
19             # ABSTRACT: MongoDB unacknowledged result object
20              
21 59     59   348 use version;
  59         148  
  59         331  
22             our $VERSION = 'v2.2.1';
23              
24 59     59   4685 use Moo;
  59         141  
  59         448  
25 59     59   19908 use MongoDB::_Constants;
  59         196  
  59         6782  
26 59     59   426 use namespace::clean;
  59         164  
  59         438  
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__