File Coverage

blib/lib/Data/Password/zxcvbn/German/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::German::RankedDictionaries;
2 1     1   6 use strict;
  1         3  
  1         29  
3 1     1   5 use warnings;
  1         2  
  1         24  
4 1     1   3231 use Data::Password::zxcvbn::RankedDictionaries::Common;
  1         74480  
  1         752  
5 1     1   6569 use Data::Password::zxcvbn::RankedDictionaries::German;
  1         216  
  1         848  
6             our $VERSION = '1.0.2'; # VERSION
7             # ABSTRACT: ranked dictionaries for common German words
8              
9              
10             our %ranked_dictionaries = (
11             %Data::Password::zxcvbn::RankedDictionaries::Common::ranked_dictionaries,
12             %Data::Password::zxcvbn::RankedDictionaries::German::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::German::RankedDictionaries - ranked dictionaries for common German words
26              
27             =head1 VERSION
28              
29             version 1.0.2
30              
31             =head1 DESCRIPTION
32              
33             This merges the common dictionaries from the C<Data::Password::zxcvbn>
34             distribution, and German dictionaries.
35              
36             =head1 AUTHOR
37              
38             Gianni Ceccarelli <dakkar@thenautilus.net>
39              
40             =head1 COPYRIGHT AND LICENSE
41              
42             This software is copyright (c) 2023 by BroadBean UK, a CareerBuilder Company.
43              
44             This is free software; you can redistribute it and/or modify it under
45             the same terms as the Perl 5 programming language system itself.
46              
47             =cut