File Coverage

blib/lib/Data/Password/zxcvbn/French/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::French::AdjacencyGraph;
2 1     1   8 use strict;
  1         3  
  1         39  
3 1     1   6 use warnings;
  1         2  
  1         39  
4 1     1   580 use Data::Password::zxcvbn::AdjacencyGraph::Common;
  1         459  
  1         35  
5 1     1   456 use Data::Password::zxcvbn::AdjacencyGraph::French;
  1         3  
  1         76  
6             our $VERSION = '1.0.2'; # VERSION
7             # ABSTRACT: adjacency graphs for common French keyboards
8              
9              
10             our %graphs = (
11             %Data::Password::zxcvbn::AdjacencyGraph::Common::graphs,
12             %Data::Password::zxcvbn::AdjacencyGraph::French::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::French::AdjacencyGraph - adjacency graphs for common French keyboards
26              
27             =head1 VERSION
28              
29             version 1.0.2
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) 2023 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