File Coverage

blib/lib/Data/Password/zxcvbn/AdjacencyGraph.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::AdjacencyGraph;
2 3     3   7924 use strict;
  3         9  
  3         97  
3 3     3   17 use warnings;
  3         7  
  3         99  
4 3     3   1415 use Data::Password::zxcvbn::AdjacencyGraph::Common;
  3         10  
  3         118  
5 3     3   1668 use Data::Password::zxcvbn::AdjacencyGraph::English;
  3         13  
  3         249  
6             our $VERSION = '1.1.1'; # VERSION
7             # ABSTRACT: adjacency graphs for common English keyboards
8              
9              
10             our %graphs = (
11             %Data::Password::zxcvbn::AdjacencyGraph::Common::graphs,
12             %Data::Password::zxcvbn::AdjacencyGraph::English::graphs,
13             );
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Data::Password::zxcvbn::AdjacencyGraph - adjacency graphs for common English keyboards
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