File Coverage

blib/lib/App/ForKids/LogicalPuzzleGenerator/Fact.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 18 72.2


line stmt bran cond sub pod time code
1             package App::ForKids::LogicalPuzzleGenerator::Fact;
2              
3 1     1   5 use strict;
  1         2  
  1         22  
4 1     1   4 use warnings FATAL => 'all';
  1         2  
  1         22  
5 1     1   3 use Carp;
  1         2  
  1         97  
6              
7             =head1 NAME
8              
9             App::ForKids::LogicalPuzzleGenerator::Fact
10              
11             =head1 VERSION
12              
13             Version 0.01
14              
15             =cut
16              
17             our $VERSION = '0.01';
18              
19              
20             =head1 SYNOPSIS
21              
22             The module is used by the App::ForKids::LogicalPuzzleGenerator.
23              
24             use App::ForKids::LogicalPuzzleGenerator;
25              
26             =head1 SUBROUTINES/METHODS
27              
28             =head2 new
29              
30             =cut
31              
32              
33             sub new
34             {
35 0     0 1   my $class = shift;
36 0           my $this = { @_ };
37 0           bless $this, $class;
38 0           return $this;
39             }
40              
41              
42             =head1 AUTHOR
43              
44             Pawel Biernacki, C<< >>
45              
46             =head1 BUGS
47              
48             Please report any bugs or feature requests to C, or through
49             the web interface at L. I will be notified, and then you'll
50             automatically be notified of progress on your bug as I make changes.
51              
52              
53             =cut
54              
55             1;