File Coverage

lib/ExtUtils/MM_UWIN.pm
Criterion Covered Total %
statement 3 7 42.9
branch n/a
condition n/a
subroutine 1 3 33.3
total 4 10 40.0


line stmt bran cond sub time code
1           package ExtUtils::MM_UWIN;
2            
3 1     1 1401 use strict;
  1       3  
  1       190  
4           our $VERSION = '6.74';
5            
6           require ExtUtils::MM_Unix;
7           our @ISA = qw(ExtUtils::MM_Unix);
8            
9            
10           =head1 NAME
11            
12           ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13            
14           =head1 SYNOPSIS
15            
16           Don't use this module directly.
17           Use ExtUtils::MM and let it choose.
18            
19           =head1 DESCRIPTION
20            
21           This is a subclass of ExtUtils::MM_Unix which contains functionality for
22           the AT&T U/WIN UNIX on Windows environment.
23            
24           Unless otherwise stated it works just like ExtUtils::MM_Unix
25            
26           =head2 Overridden methods
27            
28           =over 4
29            
30           =item os_flavor
31            
32           In addition to being Unix, we're U/WIN.
33            
34           =cut
35            
36           sub os_flavor {
37 0     0   return('Unix', 'U/WIN');
38           }
39            
40            
41           =item B
42            
43           =cut
44            
45           sub replace_manpage_separator {
46 0     0   my($self, $man) = @_;
47            
48 0         $man =~ s,/+,.,g;
49 0         return $man;
50           }
51            
52           =back
53            
54           =head1 AUTHOR
55            
56           Michael G Schwern with code from ExtUtils::MM_Unix
57            
58           =head1 SEE ALSO
59            
60           L, L
61            
62           =cut
63            
64           1;