File Coverage

blib/lib/Net/IP/Identifier/Plugin/Hotmail.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition 1 3 33.3
subroutine 6 6 100.0
pod 0 2 0.0
total 25 29 86.2


line stmt bran cond sub pod time code
1             #===============================================================================
2             # PODNAME: Net::IP::Identifier::Plugin::Hotmail
3             # ABSTRACT: identify Hotmail owned IP addresses - obsolete
4             #
5             # AUTHOR: Reid Augustin (REID)
6             # EMAIL: reid@hellosix.com
7             # CREATED: Sun Oct 12 19:32:46 PDT 2014
8             #===============================================================================
9              
10 1     1   24 use 5.008;
  1         3  
  1         38  
11 1     1   4 use strict;
  1         1  
  1         39  
12 1     1   5 use warnings;
  1         2  
  1         37  
13              
14             package Net::IP::Identifier::Plugin::Hotmail;
15              
16 1     1   4 use Role::Tiny::With;
  1         1  
  1         169  
17             with qw( Net::IP::Identifier_Role );
18              
19             our $VERSION = '0.111'; # VERSION
20              
21             sub new {
22 1     1 0 5 my ($class, %opts) = @_;
23              
24 1         3 my $self = {};
25 1   33     7 bless $self, (ref $class || $class);
26              
27             # as of May 2015, all netblocks previously owned by Hotmail are
28             # now owned directly by Microsoft - this module is obsolete
29 1         4 $self->ips(
30             );
31 1         4 return $self;
32             }
33              
34             sub name {
35 3     3 0 7 return 'Hotmail';
36             }
37              
38             1;
39              
40             __END__