File Coverage

blib/lib/Bundle/STBEY/Favourites.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              
2             ###############################################################################
3             ## ##
4             ## Copyright (c) 2009 by Steffen Beyer. ##
5             ## All rights reserved. ##
6             ## ##
7             ## This package is free software; you can redistribute it ##
8             ## and/or modify it under the same terms as Perl itself. ##
9             ## ##
10             ###############################################################################
11              
12             package Bundle::STBEY::Favourites;
13              
14 1     1   1214 use strict;
  1         1  
  1         33  
15              
16 1     1   5 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
  1         1  
  1         216  
17              
18             require Exporter;
19             require DynaLoader;
20              
21             @ISA = qw(Exporter DynaLoader);
22              
23             @EXPORT = qw();
24              
25             @EXPORT_OK = qw();
26              
27             %EXPORT_TAGS = (all => [@EXPORT_OK]);
28              
29             $VERSION = '1.2';
30              
31 2     2 1 34 sub Version { return $VERSION; }
32              
33             1;
34              
35             __END__