File Coverage

lib/ex/lib.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             #
2             # Copyright (c) 200[789] Mons Anderson . All rights reserved
3             # This program is free software; you can redistribute it and/or
4             # modify it under the same terms as Perl itself.
5             package ex::lib;
6              
7             =head1 NAME
8              
9             ex::lib - The same as lib, but makes relative path absolute. (Obsoleted by lib::abs)
10              
11             =cut
12              
13             $ex::lib::VERSION = '0.90';
14              
15             =head1 VERSION
16              
17             Version 0.90
18              
19             =head1 SYNOPSIS
20              
21             Don't use this module. It's just a compatibility wrapper for C
22              
23             But if you want, see the docs for C. Interface is the same
24              
25             =head1 BUGS
26              
27             None known
28              
29             =head1 COPYRIGHT & LICENSE
30              
31             Copyright 2007-2009 Mons Anderson.
32              
33             This program is free software; you can redistribute it and/or modify it
34             under the same terms as Perl itself.
35              
36             =head1 AUTHOR
37              
38             Mons Anderson,
39              
40             =cut
41              
42 2     2   54194 use strict;
  2         4  
  2         58  
43 2     2   8 use warnings;
  2         4  
  2         51  
44 2     2   1409 use lib::abs ();
  2         2383  
  2         116  
45              
46             *ex::lib::import = \&lib::abs::import;
47             *ex::lib::unimport = \&lib::abs::unimport;
48              
49             *ex::lib::mkapath = \&lib::abs::mkapath;
50             *ex::lib::path = \&lib::abs::path;
51              
52             1;