File Coverage

blib/lib/Crypt/Random/Source/Weak.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Crypt::Random::Source::Weak;
2             # ABSTRACT: Abstract base class for weak random data sources
3              
4             our $VERSION = '0.12';
5              
6 4     4   1529 use Moo;
  4         4  
  4         15  
7 4     4   714 use namespace::clean;
  4         4  
  4         20  
8              
9 2     2 1 1318 sub is_strong { 0 }
10              
11             1;
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Crypt::Random::Source::Weak - Abstract base class for weak random data sources
20              
21             =head1 VERSION
22              
23             version 0.12
24              
25             =head1 SYNOPSIS
26              
27             use Moo;
28             extends qw(Crypt::Random::Source::Weak);
29              
30             =head1 DESCRIPTION
31              
32             This is an abstract base class. There isn't much to describe.
33              
34             =head1 METHODS
35              
36             =head2 is_strong
37              
38             Returns false
39              
40             =head1 SUPPORT
41              
42             Bugs may be submitted through L
43             (or L).
44              
45             =head1 AUTHOR
46              
47             יובל קוג'מן (Yuval Kogman)
48              
49             =head1 COPYRIGHT AND LICENCE
50              
51             This software is copyright (c) 2008 by Yuval Kogman.
52              
53             This is free software; you can redistribute it and/or modify it under
54             the same terms as the Perl 5 programming language system itself.
55              
56             =cut
57              
58             __END__