blib/lib/Net/DAAP/Client/Auth.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 4 | 6 | 66.6 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 6 | 8 | 75.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Net::DAAP::Client::Auth; | ||||||
2 | 1 | 1 | 59169 | use strict; | |||
1 | 3 | ||||||
1 | 46 | ||||||
3 | 1 | 1 | 1645 | use Net::DAAP::Client 0.4; | |||
0 | |||||||
0 | |||||||
4 | use vars qw( $VERSION @ISA ); | ||||||
5 | use Carp; | ||||||
6 | $VERSION = 1.21; | ||||||
7 | @ISA = qw( Net::DAAP::Client ); | ||||||
8 | |||||||
9 | sub new { | ||||||
10 | my $class = shift; | ||||||
11 | carp "Net::DAAP::Client::Auth->new deprecated in favour of Net::DAAP::Client->new"; | ||||||
12 | $class->SUPER::new(@_); | ||||||
13 | } | ||||||
14 | |||||||
15 | 1; | ||||||
16 | __END__ |