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.11';
5              
6 4     4   2448 use Moo;
  4         8  
  4         23  
7 4     4   1029 use namespace::clean;
  4         7  
  4         24  
8              
9 2     2 1 1952 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.11
24              
25             =head1 SYNOPSIS
26              
27             use Moose;
28              
29             extends qw(Crypt::Random::Source::Weak);
30              
31             =head1 DESCRIPTION
32              
33             This is an abstract base class. There isn't much to describe.
34              
35             =head1 METHODS
36              
37             =head2 is_strong
38              
39             Returns false
40              
41             =head1 SUPPORT
42              
43             Bugs may be submitted through L
44             (or L).
45              
46             =head1 AUTHOR
47              
48             יובל קוג'מן (Yuval Kogman)
49              
50             =head1 COPYRIGHT AND LICENCE
51              
52             This software is copyright (c) 2008 by Yuval Kogman.
53              
54             This is free software; you can redistribute it and/or modify it under
55             the same terms as the Perl 5 programming language system itself.
56              
57             =cut
58              
59             __END__