File Coverage

blib/lib/Math/Logic/Ternary/Calculator/Version.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 2 0.0
total 13 17 76.4


line stmt bran cond sub pod time code
1             # Copyright (c) 2012-2017 Martin Becker, Blaubeuren. All rights reserved.
2             # This package is free software; you can redistribute it and/or modify it
3             # under the same terms as Perl itself.
4              
5             package Math::Logic::Ternary::Calculator::Version;
6              
7 4     4   52 use 5.008;
  4         18  
8 4     4   18 use strict;
  4         6  
  4         65  
9 4     4   27 use warnings;
  4         10  
  4         329  
10              
11             our $VERSION = '0.004';
12             our $NAME = 'Ternary Calculator';
13              
14 0     0 0 0 sub NAME { $NAME }
15 2     2 0 19 sub long_name { "$NAME v$VERSION" }
16              
17             1;
18             __END__