File Coverage

blib/lib/MongoDB/DeleteResult.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             # Copyright 2014 - 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   441 use strict;
  58         143  
  58         1701  
16 58     58   333 use warnings;
  58         140  
  58         1868  
17             package MongoDB::DeleteResult;
18              
19             # ABSTRACT: MongoDB deletion result object
20              
21 58     58   316 use version;
  58         177  
  58         324  
22             our $VERSION = 'v2.2.0';
23              
24 58     58   4249 use Moo;
  58         215  
  58         457  
25 58     58   18818 use MongoDB::_Constants;
  58         189  
  58         7093  
26 58         528 use MongoDB::_Types qw(
27             Numish
28 58     58   448 );
  58         184  
29 58     58   62313 use namespace::clean;
  58         152  
  58         397  
30              
31             with $_ for qw(
32             MongoDB::Role::_PrivateConstructor
33             MongoDB::Role::_WriteResult
34             );
35              
36             #pod =attr deleted_count
37             #pod
38             #pod The number of documents that matched the filter.
39             #pod
40             #pod =cut
41              
42             has deleted_count => (
43             is => 'ro',
44             default => 0,
45             isa => Numish,
46             );
47              
48             1;
49              
50             __END__