File Coverage

blib/lib/Date/Gregorian/Exact.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             # Copyright (c) 2007 Martin Becker. 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             # $Id: Exact.pm,v 1.7 2007/06/16 11:39:24 martin Stab $
6              
7             package Date::Gregorian::Exact;
8              
9 1     1   60401 use strict;
  1         3  
  1         37  
10 1     1   6 use Carp qw(croak);
  1         3  
  1         74  
11 1     1   14 use vars qw($VERSION);
  1         2  
  1         83  
12              
13             $VERSION = 0.99;
14              
15             sub import {
16 1     1   212 croak(__PACKAGE__ . " is no longer available");
17             }
18              
19             1;
20              
21             __END__