File Coverage

blib/lib/BSON/Symbol.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 71     71   26992 use 5.010001;
  71         230  
2 71     71   350 use strict;
  71         126  
  71         1335  
3 71     71   293 use warnings;
  71         152  
  71         4136  
4              
5             package BSON::Symbol;
6              
7             # ABSTRACT: BSON type wrapper for symbol data (DEPRECATED)
8              
9             our $VERSION = 'v1.12.2';
10              
11 71     71   400 use Moo 2.002004;
  71         977  
  71         364  
12 71     71   20544 use namespace::clean -except => 'meta';
  71         139  
  71         405  
13              
14             extends 'BSON::String';
15              
16             1;
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             BSON::Symbol - BSON type wrapper for symbol data (DEPRECATED)
25              
26             =head1 VERSION
27              
28             version v1.12.2
29              
30             =head1 DESCRIPTION
31              
32             This module wraps the deprecated BSON "symbol" type.
33              
34             You are strongly encouraged to use ordinary string data instead.
35              
36             =head1 AUTHORS
37              
38             =over 4
39              
40             =item *
41              
42             David Golden
43              
44             =item *
45              
46             Stefan G.
47              
48             =back
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is Copyright (c) 2020 by Stefan G. and MongoDB, Inc.
53              
54             This is free software, licensed under:
55              
56             The Apache License, Version 2.0, January 2004
57              
58             =cut
59              
60             __END__