File Coverage

blib/lib/Acme/Net/OdiousPlan.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Acme::Net::OdiousPlan;
2              
3             our $VERSION = '0.001';
4              
5 1     1   46358 use warnings;
  1         2  
  1         33  
6 1     1   4 use strict;
  1         2  
  1         31  
7 1     1   4 use Carp;
  1         5  
  1         92  
8 1     1   1124 use LWP::Simple qw();
  1         95728  
  1         66  
9              
10              
11             # Module implementation here
12              
13             sub new {
14 1     1 1 411 return LWP::Simple::get('http://odio.us/plan/bingo.cgi');
15             }
16              
17              
18              
19             1; # Magic true value required at end of module
20             __END__