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 59     59   361 use strict;
  59         118  
  59         1458  
16 59     59   261 use warnings;
  59         105  
  59         1665  
17             package MongoDB::DeleteResult;
18              
19             # ABSTRACT: MongoDB deletion result object
20              
21 59     59   259 use version;
  59         105  
  59         278  
22             our $VERSION = 'v2.2.2';
23              
24 59     59   3620 use Moo;
  59         121  
  59         278  
25 59     59   16443 use MongoDB::_Constants;
  59         138  
  59         6341  
26 59         521 use MongoDB::_Types qw(
27             Numish
28 59     59   397 );
  59         146  
29 59     59   57356 use namespace::clean;
  59         125  
  59         375  
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__