File Coverage

blib/lib/Mail/LMLM/Types/Egroups.pm
Criterion Covered Total %
statement 12 26 46.1
branch 0 6 0.0
condition n/a
subroutine 4 8 50.0
pod 4 4 100.0
total 20 44 45.4


line stmt bran cond sub pod time code
1             package Mail::LMLM::Types::Egroups;
2             $Mail::LMLM::Types::Egroups::VERSION = '0.6807';
3 1     1   6 use strict;
  1         2  
  1         31  
4 1     1   4 use warnings;
  1         3  
  1         25  
5              
6 1     1   5 use Mail::LMLM::Types::Ezmlm;
  1         2  
  1         27  
7              
8 1     1   5 use vars qw(@ISA);
  1         2  
  1         265  
9              
10             @ISA = qw(Mail::LMLM::Types::Ezmlm);
11              
12             sub initialize
13             {
14 0     0 1   my $self = shift;
15              
16 0           $self->SUPER::initialize(@_);
17              
18 0 0         if ( !exists( $self->{'hostname'} ) )
19             {
20 0           $self->{'hostname'} = "yahoogroups.com";
21             }
22             }
23              
24             sub get_homepage_hostname
25             {
26 0     0 1   my $self = shift;
27              
28 0           return "groups.yahoo.com";
29             }
30              
31             sub get_homepage
32             {
33 0     0 1   my $self = shift;
34              
35 0 0         if ( exists( $self->{'homepage'} ) )
36             {
37 0           return $self->{'homepage'};
38             }
39             else
40             {
41             return
42 0           "http://"
43             . $self->get_homepage_hostname()
44             . "/group/"
45             . $self->get_group_base() . "/";
46             }
47             }
48              
49             sub get_online_archive
50             {
51 0     0 1   my $self = shift;
52              
53 0 0         if ( exists( $self->{'online_archive'} ) )
54             {
55 0           return $self->{'online_archive'};
56             }
57             else
58             {
59 0           return $self->get_homepage() . "messages/";
60             }
61             }
62              
63             1;
64              
65             __END__