File Coverage

blib/lib/Data/Password/zxcvbn/RankedDictionaries.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Data::Password::zxcvbn::RankedDictionaries;
2 3     3   22 use strict;
  3         9  
  3         104  
3 3     3   17 use warnings;
  3         9  
  3         97  
4 3     3   9109 use Data::Password::zxcvbn::RankedDictionaries::Common;
  3         181  
  3         791  
5 3     3   32014 use Data::Password::zxcvbn::RankedDictionaries::English;
  3         343  
  3         1680  
6             our $VERSION = '1.1.1'; # VERSION
7             # ABSTRACT: ranked dictionaries for common English words
8              
9              
10             our %ranked_dictionaries = (
11             %Data::Password::zxcvbn::RankedDictionaries::Common::ranked_dictionaries,
12             %Data::Password::zxcvbn::RankedDictionaries::English::ranked_dictionaries,
13             );
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Data::Password::zxcvbn::RankedDictionaries - ranked dictionaries for common English words
26              
27             =head1 VERSION
28              
29             version 1.1.1
30              
31             =head1 DESCRIPTION
32              
33             =head1 AUTHOR
34              
35             Gianni Ceccarelli <gianni.ceccarelli@broadbean.com>
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is copyright (c) 2022 by BroadBean UK, a CareerBuilder Company.
40              
41             This is free software; you can redistribute it and/or modify it under
42             the same terms as the Perl 5 programming language system itself.
43              
44             =cut